Class: Aws::DAX::Types::Tag

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

Overview

A description of a tag. Every tag is a key-value pair. You can add up to 50 tags to a single DAX cluster.

Amazon Web Services-assigned tag names and values are automatically assigned the aws: prefix, which the user cannot assign. Amazon Web Services-assigned tag names do not count towards the tag limit of 50. User-assigned tag names have the prefix user:.

You cannot backdate the application of a tag.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

The key for the tag. Tag keys are case sensitive. Every DAX cluster can only have one tag with the same key. If you try to add an existing tag (same key), the existing tag value will be updated to the new value.

Returns:

  • (String)


1527
1528
1529
1530
1531
1532
# File 'gems/aws-sdk-dax/lib/aws-sdk-dax/types.rb', line 1527

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

#valueString

The value of the tag. Tag values are case-sensitive and can be null.

Returns:

  • (String)


1527
1528
1529
1530
1531
1532
# File 'gems/aws-sdk-dax/lib/aws-sdk-dax/types.rb', line 1527

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