Values.ExcelOptionsSourceRepresents a set of options that define how DataBrew will interpret a Microsoft Excel file when creating a dataset from that file.
type nonrec t = {sheetNames : SheetNameList.t option;One or more named sheets in the Excel file that will be included in the dataset.
*)sheetIndexes : SheetIndexList.t option;One or more sheet numbers in the Excel file that will be included in the dataset.
*)headerRow : HeaderRow.t option;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.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Boolean of HeaderRow.t
| `List of
[> `Integer of SheetIndex.t | `String of SheetName.t ] list ])
list ]