Class: Aws::ElastiCache::Types::RemoveTagsFromResourceMessage

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

Overview

Represents the input of a ‘RemoveTagsFromResource` operation.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#resource_nameString

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].

[1]: docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html

Returns:

  • (String)


7544
7545
7546
7547
7548
7549
# File 'lib/aws-sdk-elasticache/types.rb', line 7544

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

#tag_keysArray<String>

A list of ‘TagKeys` identifying the tags you want removed from the named resource.

Returns:

  • (Array<String>)


7544
7545
7546
7547
7548
7549
# File 'lib/aws-sdk-elasticache/types.rb', line 7544

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