Class: Aws::ServiceQuotas::Types::Tag
- Inherits:
-
Struct
- Object
- Struct
- Aws::ServiceQuotas::Types::Tag
- Defined in:
- gems/aws-sdk-servicequotas/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 _ - . : / = + @.
1292 1293 1294 1295 1296 1297 |
# File 'gems/aws-sdk-servicequotas/lib/aws-sdk-servicequotas/types.rb', line 1292 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 _ - . : / = + @.
1292 1293 1294 1295 1296 1297 |
# File 'gems/aws-sdk-servicequotas/lib/aws-sdk-servicequotas/types.rb', line 1292 class Tag < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |