Class: Aws::Kendra::Types::ExpandConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kendra::Types::ExpandConfiguration
- Includes:
- Structure
- Defined in:
- 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.
4961 4962 4963 4964 4965 4966 |
# File 'lib/aws-sdk-kendra/types.rb', line 4961 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.
4961 4962 4963 4964 4965 4966 |
# File 'lib/aws-sdk-kendra/types.rb', line 4961 class ExpandConfiguration < Struct.new( :max_result_items_to_expand, :max_expanded_results_per_item) SENSITIVE = [] include Aws::Structure end |