C# Class Amazon.SQS.Model.GetQueueUrlRequest

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 see Shared Queues in the Amazon SQS Developer Guide.

Inheritance: AmazonSQSRequest
Show file Open project: aws/aws-sdk-net Class Usage Examples

Public Methods

Method Description
GetQueueUrlRequest ( ) : System

Empty constructor used to set properties independently even when a simple constructor is available

GetQueueUrlRequest ( string queueName ) : System

Instantiates GetQueueUrlRequest with the parameterized properties

Private Methods

Method Description
IsSetQueueName ( ) : bool
IsSetQueueOwnerAWSAccountId ( ) : bool

Method Details

GetQueueUrlRequest() public method

Empty constructor used to set properties independently even when a simple constructor is available
public GetQueueUrlRequest ( ) : System
return System

GetQueueUrlRequest() public method

Instantiates GetQueueUrlRequest with the parameterized properties
public GetQueueUrlRequest ( string queueName ) : System
queueName string The name of the queue whose URL must be fetched. Maximum 80 characters. Valid values: alphanumeric characters, hyphens (-), and underscores (_). Queue names are case-sensitive.
return System