Module Values.DocumentClassifierDocumentsSource

The location of the training documents. This parameter is required in a request to create a semi-structured document classification model.

Sourcetype nonrec t = {
  1. s3Uri : S3Uri.t;
    (*

    The S3 URI location of the training documents specified in the S3Uri CSV file.

    *)
  2. testS3Uri : S3Uri.t option;
    (*

    The S3 URI location of the test documents included in the TestS3Uri CSV file. This field is not required if you do not specify a test CSV file.

    *)
}
Sourceval context_ : string
Sourceval make : ?testS3Uri:??? -> s3Uri:S3Uri.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of S3Uri.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