Class: Aws::MarketplaceCatalog::Types::Tag

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

Overview

A list of objects specifying each key name and value.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

The key associated with the tag.

Returns:

  • (String)


876
877
878
879
880
881
# File 'lib/aws-sdk-marketplacecatalog/types.rb', line 876

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

#valueString

The value associated with the tag.

Returns:

  • (String)


876
877
878
879
880
881
# File 'lib/aws-sdk-marketplacecatalog/types.rb', line 876

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