Class: Aws::CloudFormation::Types::Tag
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFormation::Types::Tag
- Defined in:
- gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb
Overview
The Tag type enables you to specify a key-value pair that can be used to store information about an CloudFormation stack.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#key ⇒ String
Required.
-
#value ⇒ String
Required.
Instance Attribute Details
#key ⇒ String
Required. A string used to identify this tag. You can specify a
maximum of 128 characters for a tag key. Tags owned by Amazon Web
Services (Amazon Web Services) have the reserved prefix: aws:
.
8254 8255 8256 8257 8258 8259 |
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 8254 class Tag < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
Required. A string containing the value for this tag. You can specify a maximum of 256 characters for a tag value.
8254 8255 8256 8257 8258 8259 |
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 8254 class Tag < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |