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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnJob.OutputFormatOptionsProperty
static final class
An implementation forCfnJob.OutputFormatOptionsProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCsv
Represents a set of options that define the structure of comma-separated value (CSV) job output. -
builder
-