@Stability(value=Stable)
public static interface CfnDataset.ExcelOptionsProperty
extends software.amazon.jsii.JsiiSerializable
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 Object |
getHeaderRow()
A variable that specifies whether the first row in the file is parsed as the header.
|
default Object |
getSheetIndexes()
One or more sheet numbers in the Excel file that will be included in the dataset.
|
default List<String> |
getSheetNames()
One or more named sheets in the Excel file that will be included in the dataset.
|
@Stability(value=Stable) @Nullable default Object getHeaderRow()
If this value is false, column names are auto-generated.
@Stability(value=Stable) @Nullable default Object getSheetIndexes()
@Stability(value=Stable) @Nullable default List<String> getSheetNames()
@Stability(value=Stable) static CfnDataset.ExcelOptionsProperty.Builder builder()
Copyright © 2022. All rights reserved.