Module Values.AttributeSuggestionsDescribeConfigSource

Gets information on the configuration of document fields/attributes that you want to base query suggestions on. To change your configuration, use AttributeSuggestionsUpdateConfig and then call UpdateQuerySuggestionsConfig.

Sourcetype nonrec t = {
  1. suggestableConfigList : SuggestableConfigList.t option;
    (*

    The list of fields/attributes that you want to set as suggestible for query suggestions.

    *)
  2. attributeSuggestionsMode : AttributeSuggestionsMode.t option;
    (*

    The mode is set to either ACTIVE or INACTIVE. If the Mode for query history is set to ENABLED when calling UpdateQuerySuggestionsConfig and AttributeSuggestionsMode to use fields/attributes is set to ACTIVE, and you haven't set your SuggestionTypes preference to DOCUMENT_ATTRIBUTES, then Amazon Kendra uses the query history.

    *)
}
Sourceval make : ?suggestableConfigList:??? -> ?attributeSuggestionsMode:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Boolean of ObjectBoolean.t | `String of DocumentAttributeKey.t ]) list ] list ]) 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