SQS Queue URL format not same as SQS console #2339
Labels
breaking-change
Issue requires a breaking change to remediate.
bug
This issue is a confirmed bug.
duplicate
This issue is a duplicate.
When I do something like:
client = boto3.client("sqs", "us-west-1")
response = client.get_queue_url(QueueName="queue_name")
print response["QueueUrl"]
the URL i get is of the form: https://us-west-1.queue.amazonaws.com/<account_id>/<queue_name>.
But according to the docs here: http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/ImportantIdentifiers.html, the queue url should be of the form:
http://sqs.us-east-1.amazonaws.com/123456789012/queue2.
This makes things very confusing... was the queue url format recently changed?
Related #224
The text was updated successfully, but these errors were encountered: