Class: Aws::DynamoDB::Types::Tag

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

Overview

Note:

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

{
  key: "TagKeyString", # required
  value: "TagValueString", # required
}

Describes a tag. A tag is a key-value pair. You can add up to 50 tags to a single DynamoDB table.

AWS-assigned tag names and values are automatically assigned the aws: prefix, which the user cannot assign. AWS-assigned tag names do not count towards the tag limit of 50. User-assigned tag names have the prefix user: in the Cost Allocation Report. You cannot backdate the application of a tag.

For an overview on tagging DynamoDB resources, see [Tagging for DynamoDB] in the *Amazon DynamoDB Developer Guide*.

[1]: docs.aws.amazon.com/amazondynamodb/latest/developerguide/Tagging.html

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

The key of the tag.Tag keys are case sensitive. Each DynamoDB table can only have up to 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)


4670
4671
4672
4673
4674
# File 'lib/aws-sdk-dynamodb/types.rb', line 4670

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

#valueString

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

Returns:

  • (String)


4670
4671
4672
4673
4674
# File 'lib/aws-sdk-dynamodb/types.rb', line 4670

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