@Stability(value=Stable)
public static interface CfnJob.OutputProperty
extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.databrew.*;
OutputProperty outputProperty = OutputProperty.builder()
.location(S3LocationProperty.builder()
.bucket("bucket")
// the properties below are optional
.bucketOwner("bucketOwner")
.key("key")
.build())
// the properties below are optional
.compressionFormat("compressionFormat")
.format("format")
.formatOptions(OutputFormatOptionsProperty.builder()
.csv(CsvOutputOptionsProperty.builder()
.delimiter("delimiter")
.build())
.build())
.maxOutputFiles(123)
.overwrite(false)
.partitionColumns(List.of("partitionColumns"))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnJob.OutputProperty.Builder
A builder for
CfnJob.OutputProperty |
static class |
CfnJob.OutputProperty.Jsii$Proxy
An implementation for
CfnJob.OutputProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnJob.OutputProperty.Builder |
builder() |
default String |
getCompressionFormat()
The compression algorithm used to compress the output text of the job.
|
default String |
getFormat()
The data format of the output of the job.
|
default Object |
getFormatOptions()
Represents options that define how DataBrew formats job output files.
|
Object |
getLocation()
The location in Amazon S3 where the job writes its output.
|
default Number |
getMaxOutputFiles()
The maximum number of files to be generated by the job and written to the output folder.
|
default Object |
getOverwrite()
A value that, if true, means that any data in the location specified for output is overwritten with new output.
|
default List<String> |
getPartitionColumns()
The names of one or more partition columns for the output of the job.
|
@Stability(value=Stable) @NotNull Object getLocation()
@Stability(value=Stable) @Nullable default String getCompressionFormat()
@Stability(value=Stable) @Nullable default String getFormat()
@Stability(value=Stable) @Nullable default Object getFormatOptions()
@Stability(value=Stable) @Nullable default Number getMaxOutputFiles()
@Stability(value=Stable) @Nullable default Object getOverwrite()
@Stability(value=Stable) @Nullable default List<String> getPartitionColumns()
@Stability(value=Stable) static CfnJob.OutputProperty.Builder builder()
CfnJob.OutputProperty.Builder of CfnJob.OutputPropertyCopyright © 2022. All rights reserved.