Module Values.JobOutputOptionsSource

Configuration for output data location and format.

Sourcetype nonrec t = {
  1. format : JobOutputFormat.t;
    (*

    Output data format. Currently only "Parquet" is supported.

    *)
  2. location : JobOutputLocation.t;
    (*

    S3 ARN or URI where output files will be written. The Amazon S3 bucket must exist in the same Amazon Web Services region where you plan to run your job.

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