libZSservicesZSamazonka-maciev2ZSamazonka-maciev2
Copyright(c) 2013-2021 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone

Amazonka.MacieV2.Types.Cell

Description

 
Synopsis

Documentation

data Cell Source #

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

  • row :: Maybe Integer

    The row number of the row that contains the sensitive data.

  • cellReference :: Maybe Text

    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.

  • column :: Maybe Integer

    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.

  • columnName :: Maybe Text

    The name of the column that contains the sensitive data, if available.

Instances

Instances details
Eq Cell Source # 
Instance details

Defined in Amazonka.MacieV2.Types.Cell

Methods

(==) :: Cell -> Cell -> Bool #

(/=) :: Cell -> Cell -> Bool #

Read Cell Source # 
Instance details

Defined in Amazonka.MacieV2.Types.Cell

Show Cell Source # 
Instance details

Defined in Amazonka.MacieV2.Types.Cell

Methods

showsPrec :: Int -> Cell -> ShowS #

show :: Cell -> String #

showList :: [Cell] -> ShowS #

Generic Cell Source # 
Instance details

Defined in Amazonka.MacieV2.Types.Cell

Associated Types

type Rep Cell :: Type -> Type #

Methods

from :: Cell -> Rep Cell x #

to :: Rep Cell x -> Cell #

NFData Cell Source # 
Instance details

Defined in Amazonka.MacieV2.Types.Cell

Methods

rnf :: Cell -> () #

Hashable Cell Source # 
Instance details

Defined in Amazonka.MacieV2.Types.Cell

Methods

hashWithSalt :: Int -> Cell -> Int #

hash :: Cell -> Int #

FromJSON Cell Source # 
Instance details

Defined in Amazonka.MacieV2.Types.Cell

type Rep Cell Source # 
Instance details

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)))))

newCell :: Cell Source #

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.

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.

cell_columnName :: Lens' Cell (Maybe Text) Source #

The name of the column that contains the sensitive data, if available.