Class: Aws::KendraRanking::Types::Tag

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

Overview

A key-value pair that identifies or categorizes a rescore execution plan. A rescore execution plan is an Amazon Kendra Intelligent Ranking resource used for provisioning the Rescore API. You can also use a tag to help control access to a rescore execution plan. A 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.

Returns:

  • (String)


532
533
534
535
536
537
# File 'gems/aws-sdk-kendraranking/lib/aws-sdk-kendraranking/types.rb', line 532

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

#valueString

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

Returns:

  • (String)


532
533
534
535
536
537
# File 'gems/aws-sdk-kendraranking/lib/aws-sdk-kendraranking/types.rb', line 532

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