Class: Aws::QBusiness::Types::StringListAttributeBoostingConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::QBusiness::Types::StringListAttributeBoostingConfiguration
- Defined in:
- gems/aws-sdk-qbusiness/lib/aws-sdk-qbusiness/types.rb
Overview
Provides information on boosting STRING_LIST type document
attributes.
In the current boosting implementation, boosting focuses primarily on
DATE attributes for recency and STRING attributes for source
prioritization. STRING_LIST attributes can serve as additional
boosting factors when needed, but are not supported when using
NativeIndexConfiguration version 2.
STRING and STRING_LIST type document attributes to be used for
boosting on the console and the API, they must be enabled for search
using the DocumentAttributeConfiguration object of the
UpdateIndex API. If you haven't enabled searching on these
attributes, you can't boost attributes of these data types on either
the console or the API.
For more information on how boosting document attributes work in Amazon Q Business, see Boosting using document attributes.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#boosting_level ⇒ String
Specifies the priority of boosted document attributes in relation to other boosted attributes.
Instance Attribute Details
#boosting_level ⇒ String
Specifies the priority of boosted document attributes in relation to
other boosted attributes. This parameter determines how strongly the
attribute influences document ranking in search results.
STRING_LIST attributes can serve as additional boosting factors
when needed, but are not supported when using
NativeIndexConfiguration version 2.
8329 8330 8331 8332 8333 |
# File 'gems/aws-sdk-qbusiness/lib/aws-sdk-qbusiness/types.rb', line 8329 class StringListAttributeBoostingConfiguration < Struct.new( :boosting_level) SENSITIVE = [] include Aws::Structure end |