Interface CfnJob.OutputFormatOptionsProperty

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

@Stability(Stable) public static interface CfnJob.OutputFormatOptionsProperty extends software.amazon.jsii.JsiiSerializable
Represents a set of options that define the structure of comma-separated (CSV) job output.

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.*;
 OutputFormatOptionsProperty outputFormatOptionsProperty = OutputFormatOptionsProperty.builder()
         .csv(CsvOutputOptionsProperty.builder()
                 .delimiter("delimiter")
                 .build())
         .build();
 

See Also: