| Copyright | (c) 2013-2023 Brendan Hay |
|---|---|
| License | Mozilla Public License, v. 2.0. |
| Maintainer | Brendan Hay |
| Stability | auto-generated |
| Portability | non-portable (GHC extensions) |
| Safe Haskell | Safe-Inferred |
| Language | Haskell2010 |
Amazonka.MacieV2.Types.Cell
Description
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.
Constructors
| Cell' | |
Fields
| |
Instances
| FromJSON Cell Source # | |
| Generic Cell Source # | |
| Read Cell Source # | |
| Show Cell Source # | |
| NFData Cell Source # | |
Defined in Amazonka.MacieV2.Types.Cell | |
| Eq Cell Source # | |
| Hashable Cell Source # | |
Defined in Amazonka.MacieV2.Types.Cell | |
| type Rep Cell Source # | |
Defined in Amazonka.MacieV2.Types.Cell type Rep Cell = D1 ('MetaData "Cell" "Amazonka.MacieV2.Types.Cell" "amazonka-maciev2-2.0-5WBPWSHaxt7LOrO1LzXg18" 'False) (C1 ('MetaCons "Cell'" 'PrefixI 'True) ((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)) :*: S1 ('MetaSel ('Just "row") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Integer))))) | |
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: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.
$sel:row:Cell', cell_row - 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.
cell_column :: Lens' Cell (Maybe Integer) Source #
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.