Values.QnAKendraConfigurationSourceContains details about the configuration of the Amazon Kendra index used for the AMAZON.QnAIntent.
type nonrec t = {kendraIndex : KendraIndexArn.t;The ARN of the Amazon Kendra index to use.
*)queryFilterStringEnabled : Boolean.t option;Specifies whether to enable an Amazon Kendra filter string or not.
*)queryFilterString : QueryFilterString.t option;Contains the Amazon Kendra filter string to use if enabled. For more information on the Amazon Kendra search filter JSON format, see Using document attributes to filter search results.
*)exactResponse : Boolean.t option;Specifies whether to return an exact response from the Amazon Kendra index or to let the Amazon Bedrock model you select generate a response based on the results. To use this feature, you must first add FAQ questions to your index by following the steps at Adding frequently asked questions (FAQs) to an index.
*)}val make :
?queryFilterStringEnabled:??? ->
?queryFilterString:??? ->
?exactResponse:??? ->
kendraIndex:KendraIndexArn.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string * [> `Boolean of Boolean.t | `String of KendraIndexArn.t ]) list ]