Class: Aws::Kendra::Types::SuggestableConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kendra::Types::SuggestableConfig
- 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
-
#attribute_name ⇒ String
The name of the document field/attribute.
-
#suggestable ⇒ Boolean
‘TRUE` means the document field/attribute is suggestible, so the contents within the field can be used for query suggestions.
Instance Attribute Details
#attribute_name ⇒ String
The name of the document field/attribute.
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 |
#suggestable ⇒ Boolean
‘TRUE` means the document field/attribute is suggestible, so the contents within the field can be used for query suggestions.
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 |