Module Values.ParallelDataConfigSource

Specifies the format and S3 location of the parallel data input file.

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

    The URI of the Amazon S3 folder that contains the parallel data input file. The folder must be in the same Region as the API endpoint you are calling.

    *)
  2. format : ParallelDataFormat.t option;
    (*

    The format of the parallel data input file.

    *)
}
Sourceval make : ?s3Uri:??? -> ?format:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum 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