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.

Returns:

  • (Integer)


4927
4928
4929
4930
4931
4932
# File '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_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.

Returns:

  • (Integer)


4927
4928
4929
4930
4931
4932
# File '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