Class: Aws::ServiceCatalog::Types::Tag

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

Overview

Information about a tag. A tag is a key-value pair. Tags are propagated to the resources created when provisioning a product.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

The tag key.

Returns:

  • (String)


6280
6281
6282
6283
6284
6285
# File 'lib/aws-sdk-servicecatalog/types.rb', line 6280

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

#valueString

The value for this key.

Returns:

  • (String)


6280
6281
6282
6283
6284
6285
# File 'lib/aws-sdk-servicecatalog/types.rb', line 6280

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