Class: Aws::Route53Domains::Types::Tag
- Inherits:
-
Struct
- Object
- Struct
- Aws::Route53Domains::Types::Tag
- Defined in:
- gems/aws-sdk-route53domains/lib/aws-sdk-route53domains/types.rb
Overview
Each tag includes the following elements.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#key ⇒ String
The key (name) of a tag.
-
#value ⇒ String
The value of a tag.
Instance Attribute Details
#key ⇒ String
The key (name) of a tag.
Valid values: A-Z, a-z, 0-9, space, ".:/=+\-@"
Constraints: Each key can be 1-128 characters long.
2664 2665 2666 2667 2668 2669 |
# File 'gems/aws-sdk-route53domains/lib/aws-sdk-route53domains/types.rb', line 2664 class Tag < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
The value of a tag.
Valid values: A-Z, a-z, 0-9, space, ".:/=+\-@"
Constraints: Each value can be 0-256 characters long.
2664 2665 2666 2667 2668 2669 |
# File 'gems/aws-sdk-route53domains/lib/aws-sdk-route53domains/types.rb', line 2664 class Tag < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |