Module Values.KendraConfigurationSource

Provides configuration information for the AMAZON.KendraSearchIntent intent. When you use this intent, Amazon Lex searches the specified Amazon Kendra index and returns documents from the index that match the user's utterance.

Sourcetype nonrec t = {
  1. kendraIndex : KendraIndexArn.t;
    (*

    The Amazon Resource Name (ARN) of the Amazon Kendra index that you want the AMAZON.KendraSearchIntent intent to search. The index must be in the same account and Region as the Amazon Lex bot.

    *)
  2. queryFilterStringEnabled : Boolean.t option;
    (*

    Determines whether the AMAZON.KendraSearchIntent intent uses a custom query string to query the Amazon Kendra index.

    *)
  3. queryFilterString : QueryFilterString.t option;
    (*

    A query filter that Amazon Lex sends to Amazon Kendra to filter the response from a query. The filter is in the format defined by Amazon Kendra. For more information, see Filtering queries.

    *)
}
Sourceval context_ : string
Sourceval make : ?queryFilterStringEnabled:??? -> ?queryFilterString:??? -> kendraIndex:KendraIndexArn.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `String of KendraIndexArn.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t