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

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#queue_nameString

(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.

Returns:

  • (String)


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_idString

(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.

Returns:

  • (String)


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