Interface CfnJobPropsMixin.OutputFormatOptionsProperty

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

@Stability(Stable) public static interface CfnJobPropsMixin.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.mixins.preview.services.databrew.mixins.*;
 OutputFormatOptionsProperty outputFormatOptionsProperty = OutputFormatOptionsProperty.builder()
         .csv(CsvOutputOptionsProperty.builder()
                 .delimiter("delimiter")
                 .build())
         .build();
 

See Also: