public static interface Output.Builder extends SdkPojo, CopyableBuilder<Output.Builder,Output>
| Modifier and Type | Method and Description |
|---|---|
Output.Builder |
compressionFormat(CompressionFormat compressionFormat)
The compression algorithm used to compress the output text of the job.
|
Output.Builder |
compressionFormat(String compressionFormat)
The compression algorithm used to compress the output text of the job.
|
Output.Builder |
format(OutputFormat format)
The data format of the output of the job.
|
Output.Builder |
format(String format)
The data format of the output of the job.
|
default Output.Builder |
formatOptions(Consumer<OutputFormatOptions.Builder> formatOptions)
Represents options that define how DataBrew formats job output files.
|
Output.Builder |
formatOptions(OutputFormatOptions formatOptions)
Represents options that define how DataBrew formats job output files.
|
default Output.Builder |
location(Consumer<S3Location.Builder> location)
The location in Amazon S3 where the job writes its output.
|
Output.Builder |
location(S3Location location)
The location in Amazon S3 where the job writes its output.
|
Output.Builder |
maxOutputFiles(Integer maxOutputFiles)
Maximum number of files to be generated by the job and written to the output folder.
|
Output.Builder |
overwrite(Boolean overwrite)
A value that, if true, means that any data in the location specified for output is overwritten with new
output.
|
Output.Builder |
partitionColumns(Collection<String> partitionColumns)
The names of one or more partition columns for the output of the job.
|
Output.Builder |
partitionColumns(String... partitionColumns)
The names of one or more partition columns for the output of the job.
|
equalsBySdkFields, sdkFieldscopyapplyMutation, buildOutput.Builder compressionFormat(String compressionFormat)
The compression algorithm used to compress the output text of the job.
compressionFormat - The compression algorithm used to compress the output text of the job.CompressionFormat,
CompressionFormatOutput.Builder compressionFormat(CompressionFormat compressionFormat)
The compression algorithm used to compress the output text of the job.
compressionFormat - The compression algorithm used to compress the output text of the job.CompressionFormat,
CompressionFormatOutput.Builder format(String format)
The data format of the output of the job.
format - The data format of the output of the job.OutputFormat,
OutputFormatOutput.Builder format(OutputFormat format)
The data format of the output of the job.
format - The data format of the output of the job.OutputFormat,
OutputFormatOutput.Builder partitionColumns(Collection<String> partitionColumns)
The names of one or more partition columns for the output of the job.
partitionColumns - The names of one or more partition columns for the output of the job.Output.Builder partitionColumns(String... partitionColumns)
The names of one or more partition columns for the output of the job.
partitionColumns - The names of one or more partition columns for the output of the job.Output.Builder location(S3Location location)
The location in Amazon S3 where the job writes its output.
location - The location in Amazon S3 where the job writes its output.default Output.Builder location(Consumer<S3Location.Builder> location)
The location in Amazon S3 where the job writes its output.
This is a convenience method that creates an instance of theS3Location.Builder avoiding the need to
create one manually via S3Location.builder().
When the Consumer completes, SdkBuilder.build() is called immediately and its result
is passed to location(S3Location).
location - a consumer that will call methods on S3Location.Builderlocation(S3Location)Output.Builder overwrite(Boolean overwrite)
A value that, if true, means that any data in the location specified for output is overwritten with new output.
overwrite - A value that, if true, means that any data in the location specified for output is overwritten with
new output.Output.Builder formatOptions(OutputFormatOptions formatOptions)
Represents options that define how DataBrew formats job output files.
formatOptions - Represents options that define how DataBrew formats job output files.default Output.Builder formatOptions(Consumer<OutputFormatOptions.Builder> formatOptions)
Represents options that define how DataBrew formats job output files.
This is a convenience method that creates an instance of theOutputFormatOptions.Builder avoiding the
need to create one manually via OutputFormatOptions.builder().
When the Consumer completes, SdkBuilder.build() is called immediately and
its result is passed to formatOptions(OutputFormatOptions).
formatOptions - a consumer that will call methods on OutputFormatOptions.BuilderformatOptions(OutputFormatOptions)Output.Builder maxOutputFiles(Integer maxOutputFiles)
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.
maxOutputFiles - 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.Copyright © 2023. All rights reserved.