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
Note:
When making an API call, you may pass Tag data as a hash:
{
key: "String",
value: "String",
}
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:
.
64926 64927 64928 64929 64930 64931 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 64926 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.
64926 64927 64928 64929 64930 64931 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 64926 class Tag < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |