Class: Aws::Redshift::Types::DeleteTagsMessage

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-redshift/types.rb

Overview

Note:

When making an API call, you may pass DeleteTagsMessage data as a hash:

{
  resource_name: "String", # required
  tag_keys: ["String"], # required
}

Contains the output from the ‘DeleteTags` action.

Instance Attribute Summary collapse

Instance Attribute Details

#resource_nameString

The Amazon Resource Name (ARN) from which you want to remove the tag or tags. For example, ‘arn:aws:redshift:us-east-1:123456789:cluster:t1`.

Returns:

  • (String)


2821
2822
2823
2824
2825
# File 'lib/aws-sdk-redshift/types.rb', line 2821

class DeleteTagsMessage < Struct.new(
  :resource_name,
  :tag_keys)
  include Aws::Structure
end

#tag_keysArray<String>

The tag key that you want to delete.

Returns:

  • (Array<String>)


2821
2822
2823
2824
2825
# File 'lib/aws-sdk-redshift/types.rb', line 2821

class DeleteTagsMessage < Struct.new(
  :resource_name,
  :tag_keys)
  include Aws::Structure
end