Class: Aws::ElastiCache::Types::RemoveTagsFromResourceMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElastiCache::Types::RemoveTagsFromResourceMessage
- Defined in:
- gems/aws-sdk-elasticache/lib/aws-sdk-elasticache/types.rb
Overview
Represents the input of a RemoveTagsFromResource
operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#resource_name ⇒ String
The Amazon Resource Name (ARN) of the resource from which you want the tags removed, for example
arn:aws:elasticache:us-west-2:0123456789:cluster:myCluster
orarn:aws:elasticache:us-west-2:0123456789:snapshot:mySnapshot
. -
#tag_keys ⇒ Array<String>
A list of
TagKeys
identifying the tags you want removed from the named resource.
Instance Attribute Details
#resource_name ⇒ String
The Amazon Resource Name (ARN) of the resource from which you want
the tags removed, for example
arn:aws:elasticache:us-west-2:0123456789:cluster:myCluster
or
arn:aws:elasticache:us-west-2:0123456789:snapshot:mySnapshot
.
For more information about ARNs, see Amazon Resource Names (ARNs) and Amazon Service Namespaces.
7596 7597 7598 7599 7600 7601 |
# File 'gems/aws-sdk-elasticache/lib/aws-sdk-elasticache/types.rb', line 7596 class RemoveTagsFromResourceMessage < Struct.new( :resource_name, :tag_keys) SENSITIVE = [] include Aws::Structure end |
#tag_keys ⇒ Array<String>
A list of TagKeys
identifying the tags you want removed from the
named resource.
7596 7597 7598 7599 7600 7601 |
# File 'gems/aws-sdk-elasticache/lib/aws-sdk-elasticache/types.rb', line 7596 class RemoveTagsFromResourceMessage < Struct.new( :resource_name, :tag_keys) SENSITIVE = [] include Aws::Structure end |