Module Values.DataSourceSummarySource

Summary information for a Amazon Kendra data source.

Sourcetype nonrec t = {
  1. name : DataSourceName.t option;
    (*

    The name of the data source.

    *)
  2. id : DataSourceId.t option;
    (*

    The identifier for the data source.

    *)
  3. type_ : DataSourceType.t option;
    (*

    The type of the data source.

    *)
  4. createdAt : Timestamp.t option;
    (*

    The Unix timestamp when the data source connector was created.

    *)
  5. updatedAt : Timestamp.t option;
    (*

    The Unix timestamp when the data source connector was last updated.

    *)
  6. status : DataSourceStatus.t option;
    (*

    The status of the data source. When the status is ACTIVE the data source is ready to use.

    *)
  7. languageCode : LanguageCode.t option;
    (*

    The code for a language. This shows a supported language for all documents in the data source. English is supported by default. For more information on supported languages, including their codes, see Adding documents in languages other than English.

    *)
}
Sourceval make : ?name:??? -> ?id:??? -> ?type_:??? -> ?createdAt:??? -> ?updatedAt:??? -> ?status:??? -> ?languageCode:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of DataSourceName.t | `Timestamp of Timestamp.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