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

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

Overview

Note:

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

{
  key: "TagKey", # required
  value: "TagValue", # required
}

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

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

The tag key.

Returns:

  • (String)


5605
5606
5607
5608
5609
# File 'lib/aws-sdk-servicecatalog/types.rb', line 5605

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

#valueString

The value for this key.

Returns:

  • (String)


5605
5606
5607
5608
5609
# File 'lib/aws-sdk-servicecatalog/types.rb', line 5605

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