Class: Aws::ServiceQuotas::Types::Tag
- Inherits:
-
Struct
- Object
- Struct
- Aws::ServiceQuotas::Types::Tag
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-servicequotas/types.rb
Overview
A complex data type that contains a tag key and tag value.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#key ⇒ String
A string that contains a tag key.
-
#value ⇒ String
A string that contains an optional tag value.
Instance Attribute Details
#key ⇒ String
A string that contains a tag key. The string length should be between 1 and 128 characters. Valid characters include a-z, A-Z, 0-9, space, and the special characters _ - . : / = + @.
1490 1491 1492 1493 1494 1495 |
# File 'lib/aws-sdk-servicequotas/types.rb', line 1490 class Tag < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
A string that contains an optional tag value. The string length should be between 0 and 256 characters. Valid characters include a-z, A-Z, 0-9, space, and the special characters _ - . : / = + @.
1490 1491 1492 1493 1494 1495 |
# File 'lib/aws-sdk-servicequotas/types.rb', line 1490 class Tag < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |