Module Values.OutputSource

Represents options that specify how and where in Amazon S3 DataBrew writes the output generated by recipe jobs or profile jobs.

Sourcetype nonrec t = {
  1. compressionFormat : CompressionFormat.t option;
    (*

    The compression algorithm used to compress the output text of the job.

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

    The data format of the output of the job.

    *)
  3. partitionColumns : ColumnNameList.t option;
    (*

    The names of one or more partition columns for the output of the job.

    *)
  4. location : S3Location.t;
    (*

    The location in Amazon S3 where the job writes its output.

    *)
  5. overwrite : OverwriteOutput.t option;
    (*

    A value that, if true, means that any data in the location specified for output is overwritten with new output.

    *)
  6. formatOptions : OutputFormatOptions.t option;
    (*

    Represents options that define how DataBrew formats job output files.

    *)
  7. maxOutputFiles : MaxOutputFiles.t option;
    (*

    Maximum number of files to be generated by the job and written to the output folder. For output partitioned by column(s), the MaxOutputFiles value is the maximum number of files per partition.

    *)
}
Sourceval context_ : string
Sourceval make : ?compressionFormat:??? -> ?format:??? -> ?partitionColumns:??? -> ?overwrite:??? -> ?formatOptions:??? -> ?maxOutputFiles:??? -> location:S3Location.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of OverwriteOutput.t | `Enum of string | `Integer of MaxOutputFiles.t | `List of [> `String of ColumnName.t ] list | `Structure of (string * [> `String of Bucket.t | `Structure of (string * [> `String of Delimiter.t ]) list ]) 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