Interface CfnDataset.FormatOptionsProperty

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

@Stability(Stable) public static interface CfnDataset.FormatOptionsProperty extends software.amazon.jsii.JsiiSerializable
Represents a set of options that define the structure of either comma-separated value (CSV), Excel, or JSON input.

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.*;
 FormatOptionsProperty formatOptionsProperty = FormatOptionsProperty.builder()
         .csv(CsvOptionsProperty.builder()
                 .delimiter("delimiter")
                 .headerRow(false)
                 .build())
         .excel(ExcelOptionsProperty.builder()
                 .headerRow(false)
                 .sheetIndexes(List.of(123))
                 .sheetNames(List.of("sheetNames"))
                 .build())
         .json(JsonOptionsProperty.builder()
                 .multiLine(false)
                 .build())
         .build();
 

See Also: