Copyright | (c) 2013-2021 Brendan Hay |
---|---|
License | Mozilla Public License, v. 2.0. |
Maintainer | Brendan Hay <brendan.g.hay+amazonka@gmail.com> |
Stability | auto-generated |
Portability | non-portable (GHC extensions) |
Safe Haskell | None |
Synopsis
Documentation
data ExcelOptions Source #
Represents a set of options that define how DataBrew will interpret a Microsoft Excel file when creating a dataset from that file.
See: newExcelOptions
smart constructor.
ExcelOptions' | |
|
Instances
newExcelOptions :: ExcelOptions Source #
Create a value of ExcelOptions
with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:sheetIndexes:ExcelOptions'
, excelOptions_sheetIndexes
- One or more sheet numbers in the Excel file that will be included in the
dataset.
$sel:sheetNames:ExcelOptions'
, excelOptions_sheetNames
- One or more named sheets in the Excel file that will be included in the
dataset.
$sel:headerRow:ExcelOptions'
, excelOptions_headerRow
- 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.
excelOptions_sheetIndexes :: Lens' ExcelOptions (Maybe (NonEmpty Natural)) Source #
One or more sheet numbers in the Excel file that will be included in the dataset.
excelOptions_sheetNames :: Lens' ExcelOptions (Maybe (NonEmpty Text)) Source #
One or more named sheets in the Excel file that will be included in the dataset.
excelOptions_headerRow :: Lens' ExcelOptions (Maybe Bool) Source #
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.