Class: Aws::LexModelBuildingService::Types::Tag
- Inherits:
-
Struct
- Object
- Struct
- Aws::LexModelBuildingService::Types::Tag
- Defined in:
- gems/aws-sdk-lexmodelbuildingservice/lib/aws-sdk-lexmodelbuildingservice/types.rb
Overview
Note:
When making an API call, you may pass Tag data as a hash:
{
key: "TagKey", # required
value: "TagValue", # required
}
A list of key/value pairs that identify a bot, bot alias, or bot channel. Tag keys and values can consist of Unicode letters, digits, white space, and any of the following symbols: _ . : / = + - @.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#key ⇒ String
The key for the tag.
-
#value ⇒ String
The value associated with a key.
Instance Attribute Details
#key ⇒ String
The key for the tag. Keys are not case-sensitive and must be unique.
5207 5208 5209 5210 5211 5212 |
# File 'gems/aws-sdk-lexmodelbuildingservice/lib/aws-sdk-lexmodelbuildingservice/types.rb', line 5207 class Tag < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
The value associated with a key. The value may be an empty string but it can't be null.
5207 5208 5209 5210 5211 5212 |
# File 'gems/aws-sdk-lexmodelbuildingservice/lib/aws-sdk-lexmodelbuildingservice/types.rb', line 5207 class Tag < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |