Class: Aws::MarketplaceMetering::Types::Tag

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

Overview

Metadata assigned to an allocation. Each tag is made up of a ‘key` and a `value`.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

One part of a key-value pair that makes up a ‘tag`. A `key` is a label that acts like a category for the specific tag values.

Returns:

  • (String)


443
444
445
446
447
448
# File 'lib/aws-sdk-marketplacemetering/types.rb', line 443

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

#valueString

One part of a key-value pair that makes up a ‘tag`. A `value` acts as a descriptor within a tag category (key). The value can be empty or null.

Returns:

  • (String)


443
444
445
446
447
448
# File 'lib/aws-sdk-marketplacemetering/types.rb', line 443

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