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
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.
4438 4439 4440 4441 4442 4443 |
# File 'gems/aws-sdk-lexmodelbuildingservice/lib/aws-sdk-lexmodelbuildingservice/types.rb', line 4438 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.
4438 4439 4440 4441 4442 4443 |
# File 'gems/aws-sdk-lexmodelbuildingservice/lib/aws-sdk-lexmodelbuildingservice/types.rb', line 4438 class Tag < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |