Class: Aws::DocDB::Types::Tag
- Inherits:
-
Struct
- Object
- Struct
- Aws::DocDB::Types::Tag
- Defined in:
- gems/aws-sdk-docdb/lib/aws-sdk-docdb/types.rb
Overview
Metadata assigned to an Amazon DocumentDB resource consisting of a key-value pair.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#key ⇒ String
The required name of the tag.
-
#value ⇒ String
The optional value of the tag.
Instance Attribute Details
#key ⇒ String
The required name of the tag. The string value can be from 1 to 128
Unicode characters in length and can't be prefixed with "aws:
"
or "rds:
". The string can contain only the set of Unicode
letters, digits, white space, '_', '.', '/', '=', '+',
'-' (Java regex:
"^([\\pL\\pZ\\pN_.:/=+\\-]*)$").
5749 5750 5751 5752 5753 5754 |
# File 'gems/aws-sdk-docdb/lib/aws-sdk-docdb/types.rb', line 5749 class Tag < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
The optional value of the tag. The string value can be from 1 to 256
Unicode characters in length and can't be prefixed with "aws:
"
or "rds:
". The string can contain only the set of Unicode
letters, digits, white space, '_', '.', '/', '=', '+',
'-' (Java regex:
"^([\\pL\\pZ\\pN_.:/=+\\-]*)$").
5749 5750 5751 5752 5753 5754 |
# File 'gems/aws-sdk-docdb/lib/aws-sdk-docdb/types.rb', line 5749 class Tag < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |