Class: Aws::Kendra::Types::ExpandConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kendra::Types::ExpandConfiguration
- Defined in:
- gems/aws-sdk-kendra/lib/aws-sdk-kendra/types.rb
Overview
Specifies the configuration information needed to customize how collapsed search result groups expand.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_expanded_results_per_item ⇒ Integer
The number of expanded results to show per collapsed primary document.
-
#max_result_items_to_expand ⇒ Integer
The number of collapsed search result groups to expand.
Instance Attribute Details
#max_expanded_results_per_item ⇒ Integer
The number of expanded results to show per collapsed primary document. For instance, if you set this value to 3, then at most 3 results per collapsed group will be displayed.
4927 4928 4929 4930 4931 4932 |
# File 'gems/aws-sdk-kendra/lib/aws-sdk-kendra/types.rb', line 4927 class ExpandConfiguration < Struct.new( :max_result_items_to_expand, :max_expanded_results_per_item) SENSITIVE = [] include Aws::Structure end |
#max_result_items_to_expand ⇒ Integer
The number of collapsed search result groups to expand. If you set this value to 10, for example, only the first 10 out of 100 result groups will have expand functionality.
4927 4928 4929 4930 4931 4932 |
# File 'gems/aws-sdk-kendra/lib/aws-sdk-kendra/types.rb', line 4927 class ExpandConfiguration < Struct.new( :max_result_items_to_expand, :max_expanded_results_per_item) SENSITIVE = [] include Aws::Structure end |