Class: Aws::SQS::Types::UntagQueueRequest

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

{
  queue_url: "String", # required
  tag_keys: ["TagKey"], # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#queue_urlString

The URL of the queue.

Returns:

  • (String)


1990
1991
1992
1993
1994
# File 'lib/aws-sdk-sqs/types.rb', line 1990

class UntagQueueRequest < Struct.new(
  :queue_url,
  :tag_keys)
  include Aws::Structure
end

#tag_keysArray<String>

The list of tags to be removed from the specified queue.

Returns:

  • (Array<String>)


1990
1991
1992
1993
1994
# File 'lib/aws-sdk-sqs/types.rb', line 1990

class UntagQueueRequest < Struct.new(
  :queue_url,
  :tag_keys)
  include Aws::Structure
end