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

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

Overview

Contains the output from the DeleteTags action.

Constant Summary collapse

SENSITIVE =
[]

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-2:123456789:cluster:t1.

Returns:

  • (String)


3772
3773
3774
3775
3776
3777
# File 'gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb', line 3772

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

#tag_keysArray<String>

The tag key that you want to delete.

Returns:

  • (Array<String>)


3772
3773
3774
3775
3776
3777
# File 'gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb', line 3772

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