AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.
To access a queue that belongs to another AWS account, use the
QueueOwnerAWSAccountIdparameter to specify the account ID of the queue's owner. The queue's owner must grant you permission to access the queue. For more information about shared queue access, see AddPermission or go to Shared Queues in the Amazon SQS Developer Guide.
Namespace: Amazon.SQS
Assembly: AWSSDK.dll
Version: 0.0.3.0
public abstract GetQueueUrlResponse GetQueueUrl( GetQueueUrlRequest request )
Container for the necessary parameters to execute the GetQueueUrl service method.
| Exception | Condition |
|---|---|
| QueueDoesNotExistException | The queue referred to does not exist. |
This example shows how to get a queue URL.
var client = new AmazonSQSClient();
var request = new GetQueueUrlRequest
{
QueueName = "MyTestQueue",
QueueOwnerAWSAccountId = "80398EXAMPLE"
};
var response = client.GetQueueUrl(request);
Console.WriteLine("Queue URL: " + response.QueueUrl);
.NET Framework:
Supported in: 4.5, 4.0, 3.5