Module Values.ContentSourceConfigurationSource

Provides the configuration information for your content sources, such as data sources, FAQs, and content indexed directly via BatchPutDocument.

Sourcetype nonrec t = {
  1. dataSourceIds : DataSourceIdList.t option;
    (*

    The identifier of the data sources you want to use for your Amazon Kendra experience.

    *)
  2. faqIds : FaqIdsList.t option;
    (*

    The identifier of the FAQs that you want to use for your Amazon Kendra experience.

    *)
  3. directPutContent : Boolean.t option;
    (*

    TRUE to use documents you indexed directly using the BatchPutDocument API.

    *)
}
Sourceval make : ?dataSourceIds:??? -> ?faqIds:??? -> ?directPutContent:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `List of [> `String of DataSourceId.t ] 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