Class: Aws::SQS::Types::GetQueueUrlRequest

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-sqs/types.rb

Overview

Note:

When making an API call, you may pass GetQueueUrlRequest data as a hash:

{
  queue_name: "String", # required
  queue_owner_aws_account_id: "String",
}

Instance Attribute Summary collapse

Instance Attribute Details

#queue_nameString

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.

Returns:

  • (String)


749
750
751
752
753
# File 'lib/aws-sdk-sqs/types.rb', line 749

class GetQueueUrlRequest < Struct.new(
  :queue_name,
  :queue_owner_aws_account_id)
  include Aws::Structure
end

#queue_owner_aws_account_idString

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

Returns:

  • (String)


749
750
751
752
753
# File 'lib/aws-sdk-sqs/types.rb', line 749

class GetQueueUrlRequest < Struct.new(
  :queue_name,
  :queue_owner_aws_account_id)
  include Aws::Structure
end