Module Values.DocumentIdentifierSource

Contains information that identifies the document.

Sourcetype nonrec t = {
  1. dataSourceType : ContentDataSourceType.t;
    (*

    The type of data source connected to the knowledge base that contains the document.

    *)
  2. s3 : S3Location.t option;
    (*

    Contains information that identifies the document in an S3 data source.

    *)
  3. custom : CustomDocumentIdentifier.t option;
    (*

    Contains information that identifies the document in a custom data source.

    *)
}
Sourceval context_ : string
Sourceval make : ?s3:??? -> ?custom:??? -> dataSourceType:ContentDataSourceType.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Structure of (string * [> `String of S3BucketUri.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