Class: Aws::Redshift::Types::DeleteTagsMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::Redshift::Types::DeleteTagsMessage
- 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
-
#resource_name ⇒ String
The Amazon Resource Name (ARN) from which you want to remove the tag or tags.
-
#tag_keys ⇒ Array<String>
The tag key that you want to delete.
Instance Attribute Details
#resource_name ⇒ String
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
.
3387 3388 3389 3390 3391 3392 |
# File 'gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb', line 3387 class DeleteTagsMessage < Struct.new( :resource_name, :tag_keys) SENSITIVE = [] include Aws::Structure end |
#tag_keys ⇒ Array<String>
The tag key that you want to delete.
3387 3388 3389 3390 3391 3392 |
# File 'gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb', line 3387 class DeleteTagsMessage < Struct.new( :resource_name, :tag_keys) SENSITIVE = [] include Aws::Structure end |