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

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

Overview

Constant Summary collapse

SENSITIVE =
[]

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)


916
917
918
919
920
921
# File 'gems/aws-sdk-sqs/lib/aws-sdk-sqs/types.rb', line 916

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

#queue_owner_aws_account_idString

The Amazon Web Services account ID of the account that created the queue.

Returns:

  • (String)


916
917
918
919
920
921
# File 'gems/aws-sdk-sqs/lib/aws-sdk-sqs/types.rb', line 916

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