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
}

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#queue_urlString

The URL of the queue.

Returns:

  • (String)


2558
2559
2560
2561
2562
2563
# File 'lib/aws-sdk-sqs/types.rb', line 2558

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

#tag_keysArray<String>

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

Returns:

  • (Array<String>)


2558
2559
2560
2561
2562
2563
# File 'lib/aws-sdk-sqs/types.rb', line 2558

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