Class: Aws::Kendra::Types::SuggestableConfig

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

Overview

Provides the configuration information for a document field/attribute that you want to base query suggestions on.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#attribute_nameString

The name of the document field/attribute.

Returns:

  • (String)


10071
10072
10073
10074
10075
10076
# File 'lib/aws-sdk-kendra/types.rb', line 10071

class SuggestableConfig < Struct.new(
  :attribute_name,
  :suggestable)
  SENSITIVE = []
  include Aws::Structure
end

#suggestableBoolean

‘TRUE` means the document field/attribute is suggestible, so the contents within the field can be used for query suggestions.

Returns:

  • (Boolean)


10071
10072
10073
10074
10075
10076
# File 'lib/aws-sdk-kendra/types.rb', line 10071

class SuggestableConfig < Struct.new(
  :attribute_name,
  :suggestable)
  SENSITIVE = []
  include Aws::Structure
end