Class: Aws::CostandUsageReportService::Types::Tag

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

Overview

Describes a tag. A tag is a key-value pair. You can add up to 50 tags to a report definition.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

The key of the tag. Tag keys are case sensitive. Each report definition can only have up to one tag with the same key. If you try to add an existing tag with the same key, the existing tag value will be updated to the new value.

Returns:

  • (String)


352
353
354
355
356
357
# File 'lib/aws-sdk-costandusagereportservice/types.rb', line 352

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

#valueString

The value of the tag. Tag values are case-sensitive. This can be an empty string.

Returns:

  • (String)


352
353
354
355
356
357
# File 'lib/aws-sdk-costandusagereportservice/types.rb', line 352

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