JobOutput

data class JobOutput(val compressionFormat: JobOutputCompressionFormat? = null, val format: JobOutputFormat? = null, val formatOptions: JobOutputFormatOptions? = null, val location: JobS3Location, val maxOutputFiles: Int? = null, val overwrite: Boolean? = null, val partitionColumns: List<String>? = null)

Constructors

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

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

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

Link copied to clipboard
val format: 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: 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: 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

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