JobOutputArgs

data class JobOutputArgs(val compressionFormat: Output<JobOutputCompressionFormat>? = null, val format: Output<JobOutputFormat>? = null, val formatOptions: Output<JobOutputFormatOptionsArgs>? = null, val location: Output<JobS3LocationArgs>, val maxOutputFiles: Output<Int>? = null, val overwrite: Output<Boolean>? = null, val partitionColumns: Output<List<String>>? = null) : ConvertibleToJava<JobOutputArgs>

Constructors

Link copied to clipboard
constructor(compressionFormat: Output<JobOutputCompressionFormat>? = null, format: Output<JobOutputFormat>? = null, formatOptions: Output<JobOutputFormatOptionsArgs>? = null, location: Output<JobS3LocationArgs>, maxOutputFiles: Output<Int>? = null, overwrite: Output<Boolean>? = null, partitionColumns: Output<List<String>>? = null)

Properties

Link copied to clipboard

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

Link copied to clipboard
val format: Output<JobOutputFormat>? = null

The data format of the output of the job.

Link copied to clipboard

Represents options that define how DataBrew formats job output files.

Link copied to clipboard

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

Link copied to clipboard
val maxOutputFiles: Output<Int>? = null

The maximum number of files to be generated by the job and written to the output folder.

Link copied to clipboard
val overwrite: Output<Boolean>? = null

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

Link copied to clipboard
val partitionColumns: Output<List<String>>? = null

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

Functions

Link copied to clipboard
open override fun toJava(): JobOutputArgs