Class: Aws::Kendra::Types::ExpandConfiguration

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#max_expanded_results_per_itemInteger

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.



4842
4843
4844
4845
4846
4847
# File 'lib/aws-sdk-kendra/types.rb', line 4842

class ExpandConfiguration < Struct.new(
  :max_result_items_to_expand,
  :max_expanded_results_per_item)
  SENSITIVE = []
  include Aws::Structure
end

#max_result_items_to_expandInteger

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.



4842
4843
4844
4845
4846
4847
# File 'lib/aws-sdk-kendra/types.rb', line 4842

class ExpandConfiguration < Struct.new(
  :max_result_items_to_expand,
  :max_expanded_results_per_item)
  SENSITIVE = []
  include Aws::Structure
end