Class: Aws::SQS::Types::TagQueueRequest

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 TagQueueRequest data as a hash:

{
  queue_url: "String", # required
  tags: { # required
    "TagKey" => "TagValue",
  },
}

Instance Attribute Summary collapse

Instance Attribute Details

#queue_urlString

The URL of the queue.

Returns:

  • (String)


1966
1967
1968
1969
1970
# File 'lib/aws-sdk-sqs/types.rb', line 1966

class TagQueueRequest < Struct.new(
  :queue_url,
  :tags)
  include Aws::Structure
end

#tagsHash<String,String>

The list of tags to be added to the specified queue.

Returns:

  • (Hash<String,String>)


1966
1967
1968
1969
1970
# File 'lib/aws-sdk-sqs/types.rb', line 1966

class TagQueueRequest < Struct.new(
  :queue_url,
  :tags)
  include Aws::Structure
end