Class: Aws::ServiceCatalog::Types::Tag
- Inherits:
-
Struct
- Object
- Struct
- Aws::ServiceCatalog::Types::Tag
- 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
-
#key ⇒ String
The tag key.
-
#value ⇒ String
The value for this key.
Instance Attribute Details
#key ⇒ String
The tag key.
6318 6319 6320 6321 6322 6323 |
# File 'lib/aws-sdk-servicecatalog/types.rb', line 6318 class Tag < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
The value for this key.
6318 6319 6320 6321 6322 6323 |
# File 'lib/aws-sdk-servicecatalog/types.rb', line 6318 class Tag < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |