Module Values.JobInputOptionsSource

Configuration for input data location and format. Input files have a limitation of 10gb per file, and 1gb per Parquet row-group within the file.

Sourcetype nonrec t = {
  1. location : JobInputLocation.t;
    (*

    S3 ARN or URI where input files are stored. The Amazon S3 bucket must be created in the same Amazon Web Services region where you plan to run your job.

    *)
  2. format : JobInputFormat.t;
    (*

    Input data format. Currently only Parquet is supported. Input files have a limitation of 10gb per file, and 1gb per Parquet row-group within the file.

    *)
}
Sourceval context_ : string
Sourceval make : location:JobInputLocation.t -> format:JobInputFormat.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of JobInputLocation.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