Class: Aws::Lightsail::Types::Tag
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lightsail::Types::Tag
- Defined in:
- gems/aws-sdk-lightsail/lib/aws-sdk-lightsail/types.rb
Overview
Describes a tag key and optional value assigned to an Amazon Lightsail resource.
For more information about tags in Lightsail, see the Amazon Lightsail Developer Guide.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#key ⇒ String
The key of the tag.
-
#value ⇒ String
The value of the tag.
Instance Attribute Details
#key ⇒ String
The key of the tag.
Constraints: Tag keys accept a maximum of 128 letters, numbers, spaces in UTF-8, or the following characters: + - = . _ : / @
14197 14198 14199 14200 14201 14202 |
# File 'gems/aws-sdk-lightsail/lib/aws-sdk-lightsail/types.rb', line 14197 class Tag < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
The value of the tag.
Constraints: Tag values accept a maximum of 256 letters, numbers, spaces in UTF-8, or the following characters: + - = . _ : / @
14197 14198 14199 14200 14201 14202 |
# File 'gems/aws-sdk-lightsail/lib/aws-sdk-lightsail/types.rb', line 14197 class Tag < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |