Class: Aws::Kendra::Types::Tag
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kendra::Types::Tag
- Defined in:
- gems/aws-sdk-kendra/lib/aws-sdk-kendra/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 an index, FAQ, or data source. 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 the tag.
Instance Attribute Details
#key ⇒ String
The key for the tag. Keys are not case sensitive and must be unique for the index, FAQ, or data source.
11261 11262 11263 11264 11265 11266 |
# File 'gems/aws-sdk-kendra/lib/aws-sdk-kendra/types.rb', line 11261 class Tag < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |