AWS SDK Version 2 for .NET
API Reference

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.

.NET Framework 3.5
 
Container for the parameters to the GetQueueUrl operation. Returns the URL of an existing queue. This action provides a simple way to retrieve the URL of an Amazon SQS queue.

To access a queue that belongs to another AWS account, use the QueueOwnerAWSAccountId parameter 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.

Inheritance Hierarchy

System.Object
  Amazon.Runtime.AmazonWebServiceRequest
    Amazon.SQS.AmazonSQSRequest
      Amazon.SQS.Model.GetQueueUrlRequest

Namespace: Amazon.SQS.Model
Assembly: AWSSDK.dll
Version: (assembly version)

Syntax

C#
public class GetQueueUrlRequest : AmazonSQSRequest
         IRequestEvents

The GetQueueUrlRequest type exposes the following members

Constructors

NameDescription
Public Method GetQueueUrlRequest() Empty constructor used to set properties independently even when a simple constructor is available
Public Method GetQueueUrlRequest(string) Instantiates GetQueueUrlRequest with the parameterized properties

Properties

NameTypeDescription
Public Property QueueName System.String Gets and sets the property QueueName.

The name of the queue whose URL must be fetched. Maximum 80 characters; alphanumeric characters, hyphens (-), and underscores (_) are allowed.

Public Property QueueOwnerAWSAccountId System.String Gets and sets the property QueueOwnerAWSAccountId.

The AWS account ID of the account that created the queue.

Examples

This example shows how to get a queue URL.

Get queue URL example

var client = new AmazonSQSClient();

var request = new GetQueueUrlRequest
{
  QueueName = "MyTestQueue",
  QueueOwnerAWSAccountId = "80398EXAMPLE"
};

var response = client.GetQueueUrl(request);

Console.WriteLine("Queue URL: " + response.QueueUrl);
      

Version Information

.NET Framework:
Supported in: 4.5, 4.0, 3.5

.NET for Windows Store apps:
Supported in: Windows 8.1, Windows 8

.NET for Windows Phone:
Supported in: Windows Phone 8.1, Windows Phone 8