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

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

Overview

A tag that can be added to an ElastiCache cluster or replication group. Tags are composed of a Key/Value pair. You can use tags to categorize and track all your ElastiCache resources, with the exception of global replication group. When you add or remove tags on replication groups, those actions will be replicated to all nodes in the replication group. A tag with a null Value is permitted.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

The key for the tag. May not be null.

Returns:

  • (String)


9291
9292
9293
9294
9295
9296
# File 'gems/aws-sdk-elasticache/lib/aws-sdk-elasticache/types.rb', line 9291

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

#valueString

The tag's value. May be null.

Returns:

  • (String)


9291
9292
9293
9294
9295
9296
# File 'gems/aws-sdk-elasticache/lib/aws-sdk-elasticache/types.rb', line 9291

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