libZSservicesZSamazonka-securityhubZSamazonka-securityhub
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.SecurityHub.Types.Cell

Description

 
Synopsis

Documentation

data Cell Source #

An occurrence of sensitive data detected in a Microsoft Excel workbook, comma-separated value (CSV) file, or tab-separated value (TSV) file.

See: newCell smart constructor.

Constructors

Cell' 

Fields

  • row :: Maybe Integer

    The row number of the row that contains the data.

  • cellReference :: Maybe Text

    For a Microsoft Excel workbook, provides the location of the cell, as an absolute cell reference, that contains the data. For example, Sheet2!C5 for cell C5 on Sheet2.

  • column :: Maybe Integer

    The column number of the column that contains the data. For a Microsoft Excel workbook, the column number corresponds to the alphabetical column identifiers. For example, a value of 1 for Column corresponds to the A column in the workbook.

  • columnName :: Maybe Text

    The name of the column that contains the data.

Instances

Instances details
Eq Cell Source # 
Instance details

Defined in Amazonka.SecurityHub.Types.Cell

Methods

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

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

Read Cell Source # 
Instance details

Defined in Amazonka.SecurityHub.Types.Cell

Show Cell Source # 
Instance details

Defined in Amazonka.SecurityHub.Types.Cell

Methods

showsPrec :: Int -> Cell -> ShowS #

show :: Cell -> String #

showList :: [Cell] -> ShowS #

Generic Cell Source # 
Instance details

Defined in Amazonka.SecurityHub.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.SecurityHub.Types.Cell

Methods

rnf :: Cell -> () #

Hashable Cell Source # 
Instance details

Defined in Amazonka.SecurityHub.Types.Cell

Methods

hashWithSalt :: Int -> Cell -> Int #

hash :: Cell -> Int #

ToJSON Cell Source # 
Instance details

Defined in Amazonka.SecurityHub.Types.Cell

FromJSON Cell Source # 
Instance details

Defined in Amazonka.SecurityHub.Types.Cell

type Rep Cell Source # 
Instance details

Defined in Amazonka.SecurityHub.Types.Cell

type Rep Cell = D1 ('MetaData "Cell" "Amazonka.SecurityHub.Types.Cell" "libZSservicesZSamazonka-securityhubZSamazonka-securityhub" '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 data.

$sel:cellReference:Cell', cell_cellReference - For a Microsoft Excel workbook, provides the location of the cell, as an absolute cell reference, that contains the data. For example, Sheet2!C5 for cell C5 on Sheet2.

$sel:column:Cell', cell_column - The column number of the column that contains the data. For a Microsoft Excel workbook, the column number corresponds to the alphabetical column identifiers. For example, a value of 1 for Column corresponds to the A column in the workbook.

$sel:columnName:Cell', cell_columnName - The name of the column that contains the data.

cell_row :: Lens' Cell (Maybe Integer) Source #

The row number of the row that contains the data.

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

For a Microsoft Excel workbook, provides the location of the cell, as an absolute cell reference, that contains the data. For example, Sheet2!C5 for cell C5 on Sheet2.

cell_column :: Lens' Cell (Maybe Integer) Source #

The column number of the column that contains the data. For a Microsoft Excel workbook, the column number corresponds to the alphabetical column identifiers. For example, a value of 1 for Column corresponds to the A column in the workbook.

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

The name of the column that contains the data.