Class: Aws::EC2::Types::Tag
- Inherits:
-
Struct
- Object
- Struct
- Aws::EC2::Types::Tag
- Defined in:
- gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb
Overview
Describes a tag.
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 are case-sensitive and accept a maximum of 127
Unicode characters. May not begin with aws:
.
64506 64507 64508 64509 64510 64511 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 64506 class Tag < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
The value of the tag.
Constraints: Tag values are case-sensitive and accept a maximum of 256 Unicode characters.
64506 64507 64508 64509 64510 64511 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 64506 class Tag < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |