Module Values.ExcelOptionsSource

Represents a set of options that define how DataBrew will interpret a Microsoft Excel file when creating a dataset from that file.

Sourcetype nonrec t = {
  1. sheetNames : SheetNameList.t option;
    (*

    One or more named sheets in the Excel file that will be included in the dataset.

    *)
  2. sheetIndexes : SheetIndexList.t option;
    (*

    One or more sheet numbers in the Excel file that will be included in the dataset.

    *)
  3. 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.

    *)
}
Sourceval make : ?sheetNames:??? -> ?sheetIndexes:??? -> ?headerRow:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of HeaderRow.t | `List of [> `Integer of SheetIndex.t | `String of SheetName.t ] list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t