Class: Aws::Kendra::Types::Tag

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-kendra/lib/aws-sdk-kendra/types.rb

Overview

A key-value pair that identifies or categorizes an index, FAQ, data source, or other resource. TA tag key and value can consist of Unicode letters, digits, white space, and any of the following symbols: _ . : / = + - @.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

The key for the tag. Keys are not case sensitive and must be unique for the index, FAQ, data source, or other resource.

Returns:

  • (String)


10309
10310
10311
10312
10313
10314
# File 'gems/aws-sdk-kendra/lib/aws-sdk-kendra/types.rb', line 10309

class Tag < Struct.new(
  :key,
  :value)
  SENSITIVE = []
  include Aws::Structure
end

#valueString

The value associated with the tag. The value may be an empty string but it can't be null.

Returns:

  • (String)


10309
10310
10311
10312
10313
10314
# File 'gems/aws-sdk-kendra/lib/aws-sdk-kendra/types.rb', line 10309

class Tag < Struct.new(
  :key,
  :value)
  SENSITIVE = []
  include Aws::Structure
end