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

Inherits:
Struct
  • Object
show all
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

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.

Returns:

  • (String)


7544
7545
7546
7547
7548
7549
# File 'gems/aws-sdk-elasticache/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 'gems/aws-sdk-elasticache/lib/aws-sdk-elasticache/types.rb', line 7544

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