Interface CfnDataset.ExcelOptionsProperty
- All Superinterfaces:
 software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
 CfnDataset.ExcelOptionsProperty.Jsii$Proxy
- Enclosing class:
 CfnDataset
@Stability(Stable)
public static interface CfnDataset.ExcelOptionsProperty
extends software.amazon.jsii.JsiiSerializable
Represents a set of options that define how DataBrew will interpret a Microsoft Excel file when creating a dataset from that file.
 
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();
 
 - See Also:
 
- 
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataset.ExcelOptionsPropertystatic final classAn implementation forCfnDataset.ExcelOptionsProperty - 
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectA variable that specifies whether the first row in the file is parsed as the header.default ObjectOne or more sheet numbers in the Excel file that will be included in the dataset.One or more named sheets in the Excel file that will be included in the dataset.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson 
- 
Method Details
- 
getHeaderRow
A variable that specifies whether the first row in the file is parsed as the header.If this value is false, column names are auto-generated.
Returns union: either
BooleanorIResolvable- See Also:
 
 - 
getSheetIndexes
One or more sheet numbers in the Excel file that will be included in the dataset.Returns union: either Listinvalid input: '<'
Number> orIResolvable- See Also:
 
 - 
getSheetNames
One or more named sheets in the Excel file that will be included in the dataset.- See Also:
 
 - 
builder
 
 -