public static interface CfnDataset.ExcelOptionsProperty
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.*; ExcelOptionsProperty excelOptionsProperty = ExcelOptionsProperty.builder() .headerRow(false) .sheetIndexes(List.of(123)) .sheetNames(List.of("sheetNames")) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnDataset.ExcelOptionsProperty.Builder
A builder for
CfnDataset.ExcelOptionsProperty |
static class |
CfnDataset.ExcelOptionsProperty.Jsii$Proxy
An implementation for
CfnDataset.ExcelOptionsProperty |
Modifier and Type | Method and Description |
---|---|
static CfnDataset.ExcelOptionsProperty.Builder |
builder() |
default java.lang.Object |
getHeaderRow()
A variable that specifies whether the first row in the file is parsed as the header.
|
default java.lang.Object |
getSheetIndexes()
One or more sheet numbers in the Excel file that will be included in the dataset.
|
default java.util.List<java.lang.String> |
getSheetNames()
One or more named sheets in the Excel file that will be included in the dataset.
|
default java.lang.Object getHeaderRow()
If this value is false, column names are auto-generated.
default java.lang.Object getSheetIndexes()
default java.util.List<java.lang.String> getSheetNames()
static CfnDataset.ExcelOptionsProperty.Builder builder()