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

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

Overview

Note:

When making an API call, you may pass RemoveTagsFromResourceMessage data as a hash:

{
  resource_name: "String", # required
  tag_keys: ["String"], # required
}

Represents the input of a ‘RemoveTagsFromResource` operation.

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 AWS Service Namespaces].

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

Returns:

  • (String)


4881
4882
4883
4884
4885
# File 'lib/aws-sdk-elasticache/types.rb', line 4881

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

#tag_keysArray<String>

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

Returns:

  • (Array<String>)


4881
4882
4883
4884
4885
# File 'lib/aws-sdk-elasticache/types.rb', line 4881

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