Class: Aws::SQS::Types::GetQueueUrlRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::SQS::Types::GetQueueUrlRequest
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sqs/types.rb
Overview
Retrieves the URL of an existing queue based on its name and, optionally, the Amazon Web Services account ID.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#queue_name ⇒ String
(Required) The name of the queue for which you want to fetch the URL.
-
#queue_owner_aws_account_id ⇒ String
(Optional) The Amazon Web Services account ID of the account that created the queue.
Instance Attribute Details
#queue_name ⇒ String
(Required) The name of the queue for which you want to fetch the URL. The name can be up to 80 characters long and can include alphanumeric characters, hyphens (-), and underscores (_). Queue URLs and names are case-sensitive.
914 915 916 917 918 919 |
# File 'lib/aws-sdk-sqs/types.rb', line 914 class GetQueueUrlRequest < Struct.new( :queue_name, :queue_owner_aws_account_id) SENSITIVE = [] include Aws::Structure end |
#queue_owner_aws_account_id ⇒ String
(Optional) The Amazon Web Services account ID of the account that created the queue. This is only required when you are attempting to access a queue owned by another Amazon Web Services account.
914 915 916 917 918 919 |
# File 'lib/aws-sdk-sqs/types.rb', line 914 class GetQueueUrlRequest < Struct.new( :queue_name, :queue_owner_aws_account_id) SENSITIVE = [] include Aws::Structure end |