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
Specifies the location of an occurrence of sensitive data in a Microsoft Excel workbook, CSV file, or TSV file.
See: newCell
smart constructor.
Cell' | |
|
Instances
Eq Cell Source # | |
Read Cell Source # | |
Show Cell Source # | |
Generic Cell Source # | |
NFData Cell Source # | |
Defined in Amazonka.MacieV2.Types.Cell | |
Hashable Cell Source # | |
Defined in Amazonka.MacieV2.Types.Cell | |
FromJSON Cell Source # | |
type Rep Cell Source # | |
Defined in Amazonka.MacieV2.Types.Cell type Rep Cell = D1 ('MetaData "Cell" "Amazonka.MacieV2.Types.Cell" "libZSservicesZSamazonka-maciev2ZSamazonka-maciev2" 'False) (C1 ('MetaCons "Cell'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "row") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Integer)) :*: S1 ('MetaSel ('Just "cellReference") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "column") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Integer)) :*: S1 ('MetaSel ('Just "columnName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))) |
Create a value of Cell
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:row:Cell'
, cell_row
- The row number of the row that contains the sensitive data.
$sel:cellReference:Cell'
, cell_cellReference
- The location of the cell, as an absolute cell reference, that contains
the sensitive data, for example Sheet2!C5 for cell C5 on Sheet2 in a
Microsoft Excel workbook. This value is null for CSV and TSV files.
$sel:column:Cell'
, cell_column
- The column number of the column that contains the sensitive data. For a
Microsoft Excel workbook, this value correlates to the alphabetical
character(s) for a column identifier, for example: 1 for column A, 2 for
column B, and so on.
$sel:columnName:Cell'
, cell_columnName
- The name of the column that contains the sensitive data, if available.
cell_row :: Lens' Cell (Maybe Integer) Source #
The row number of the row that contains the sensitive data.
cell_cellReference :: Lens' Cell (Maybe Text) Source #
The location of the cell, as an absolute cell reference, that contains the sensitive data, for example Sheet2!C5 for cell C5 on Sheet2 in a Microsoft Excel workbook. This value is null for CSV and TSV files.