Class: Aws::ElastiCache::Types::Tag

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 Tag data as a hash:

{
  key: "String",
  value: "String",
}

A cost allocation Tag that can be added to an ElastiCache cluster or replication group. Tags are composed of a Key/Value pair. A tag with a null Value is permitted.

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

The key for the tag. May not be null.

Returns:

  • (String)


5882
5883
5884
5885
5886
# File 'lib/aws-sdk-elasticache/types.rb', line 5882

class Tag < Struct.new(
  :key,
  :value)
  include Aws::Structure
end

#valueString

The tag’s value. May be null.

Returns:

  • (String)


5882
5883
5884
5885
5886
# File 'lib/aws-sdk-elasticache/types.rb', line 5882

class Tag < Struct.new(
  :key,
  :value)
  include Aws::Structure
end