Class: Aws::Kendra::Types::AttributeSuggestionsDescribeConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kendra::Types::AttributeSuggestionsDescribeConfig
- Defined in:
- gems/aws-sdk-kendra/lib/aws-sdk-kendra/types.rb
Overview
Gets information on the configuration of document fields/attributes that you want to base query suggestions on. To change your configuration, use AttributeSuggestionsUpdateConfig and then call UpdateQuerySuggestionsConfig.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#attribute_suggestions_mode ⇒ String
The mode is set to either
ACTIVE
orINACTIVE
. -
#suggestable_config_list ⇒ Array<Types::SuggestableConfig>
The list of fields/attributes that you want to set as suggestible for query suggestions.
Instance Attribute Details
#attribute_suggestions_mode ⇒ String
The mode is set to either ACTIVE
or INACTIVE
. If the Mode
for
query history is set to ENABLED
when calling
UpdateQuerySuggestionsConfig and AttributeSuggestionsMode
to
use fields/attributes is set to ACTIVE
, and you haven't set your
SuggestionTypes
preference to DOCUMENT_ATTRIBUTES
, then Amazon
Kendra uses the query history.
509 510 511 512 513 514 |
# File 'gems/aws-sdk-kendra/lib/aws-sdk-kendra/types.rb', line 509 class AttributeSuggestionsDescribeConfig < Struct.new( :suggestable_config_list, :attribute_suggestions_mode) SENSITIVE = [] include Aws::Structure end |
#suggestable_config_list ⇒ Array<Types::SuggestableConfig>
The list of fields/attributes that you want to set as suggestible for query suggestions.
509 510 511 512 513 514 |
# File 'gems/aws-sdk-kendra/lib/aws-sdk-kendra/types.rb', line 509 class AttributeSuggestionsDescribeConfig < Struct.new( :suggestable_config_list, :attribute_suggestions_mode) SENSITIVE = [] include Aws::Structure end |