public static interface CfnDataset.FormatOptionsProperty
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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnDataset.FormatOptionsProperty.Builder
A builder for
CfnDataset.FormatOptionsProperty |
static class |
CfnDataset.FormatOptionsProperty.Jsii$Proxy
An implementation for
CfnDataset.FormatOptionsProperty |
Modifier and Type | Method and Description |
---|---|
static CfnDataset.FormatOptionsProperty.Builder |
builder() |
default java.lang.Object |
getCsv()
Options that define how CSV input is to be interpreted by DataBrew.
|
default java.lang.Object |
getExcel()
Options that define how Excel input is to be interpreted by DataBrew.
|
default java.lang.Object |
getJson()
Options that define how JSON input is to be interpreted by DataBrew.
|
default java.lang.Object getCsv()
default java.lang.Object getExcel()
default java.lang.Object getJson()
static CfnDataset.FormatOptionsProperty.Builder builder()