I've run into a particularly vexing problem. I can easily connect to a native (one owned by my AWS account credentials) SQS queue using the boto SQS module. However, it appears AWS offers the ability to allow connection to non-native (owned by another AWS account) SQS queues using permissions. This is probably better described as a shared queue.
Is there a way to use boto to connect to a shared queue? I can't seem to find any methods or references in the boto code or documentation for performing such an operation.
boto.sqs.queue.Queue(boto.sqs.connection.SQSConnection('Account B Access Key', 'Account B Secret Key'), url='Account A my_queue URL')not work then? - Tomasz Łazarowicz