Interface CfnJob.OutputProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnJob.OutputProperty.Jsii$Proxy
Enclosing class:
CfnJob

@Stability(Stable) public static interface CfnJob.OutputProperty extends software.amazon.jsii.JsiiSerializable
Represents options that specify how and where in Amazon S3 DataBrew writes the output generated by recipe jobs or profile jobs.

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();
 

See Also: