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
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#queue_name ⇒ String
The name of the queue whose URL must be fetched.
-
#queue_owner_aws_account_id ⇒ String
The Amazon Web Services account ID of the account that created the queue.
Instance Attribute Details
#queue_name ⇒ String
The name of the queue whose URL must be fetched. Maximum 80 characters. Valid values: alphanumeric characters, hyphens (‘-`), and underscores (`_`).
Queue URLs and names are case-sensitive.
911 912 913 914 915 916 |
# File 'lib/aws-sdk-sqs/types.rb', line 911 class GetQueueUrlRequest < Struct.new( :queue_name, :queue_owner_aws_account_id) SENSITIVE = [] include Aws::Structure end |
#queue_owner_aws_account_id ⇒ String
The Amazon Web Services account ID of the account that created the queue.
911 912 913 914 915 916 |
# File 'lib/aws-sdk-sqs/types.rb', line 911 class GetQueueUrlRequest < Struct.new( :queue_name, :queue_owner_aws_account_id) SENSITIVE = [] include Aws::Structure end |