libZSservicesZSamazonka-quicksightZSamazonka-quicksight
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.QuickSight.Types.RowInfo

Description

 
Synopsis

Documentation

data RowInfo Source #

Information about rows for a data set SPICE ingestion.

See: newRowInfo smart constructor.

Constructors

RowInfo' 

Fields

Instances

Instances details
Eq RowInfo Source # 
Instance details

Defined in Amazonka.QuickSight.Types.RowInfo

Methods

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

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

Read RowInfo Source # 
Instance details

Defined in Amazonka.QuickSight.Types.RowInfo

Show RowInfo Source # 
Instance details

Defined in Amazonka.QuickSight.Types.RowInfo

Generic RowInfo Source # 
Instance details

Defined in Amazonka.QuickSight.Types.RowInfo

Associated Types

type Rep RowInfo :: Type -> Type #

Methods

from :: RowInfo -> Rep RowInfo x #

to :: Rep RowInfo x -> RowInfo #

NFData RowInfo Source # 
Instance details

Defined in Amazonka.QuickSight.Types.RowInfo

Methods

rnf :: RowInfo -> () #

Hashable RowInfo Source # 
Instance details

Defined in Amazonka.QuickSight.Types.RowInfo

Methods

hashWithSalt :: Int -> RowInfo -> Int #

hash :: RowInfo -> Int #

FromJSON RowInfo Source # 
Instance details

Defined in Amazonka.QuickSight.Types.RowInfo

type Rep RowInfo Source # 
Instance details

Defined in Amazonka.QuickSight.Types.RowInfo

type Rep RowInfo = D1 ('MetaData "RowInfo" "Amazonka.QuickSight.Types.RowInfo" "libZSservicesZSamazonka-quicksightZSamazonka-quicksight" 'False) (C1 ('MetaCons "RowInfo'" 'PrefixI 'True) (S1 ('MetaSel ('Just "rowsIngested") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Integer)) :*: (S1 ('MetaSel ('Just "totalRowsInDataset") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Integer)) :*: S1 ('MetaSel ('Just "rowsDropped") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Integer)))))

newRowInfo :: RowInfo Source #

Create a value of RowInfo 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:rowsIngested:RowInfo', rowInfo_rowsIngested - The number of rows that were ingested.

$sel:totalRowsInDataset:RowInfo', rowInfo_totalRowsInDataset - The total number of rows in the dataset.

$sel:rowsDropped:RowInfo', rowInfo_rowsDropped - The number of rows that were not ingested.

rowInfo_rowsIngested :: Lens' RowInfo (Maybe Integer) Source #

The number of rows that were ingested.

rowInfo_totalRowsInDataset :: Lens' RowInfo (Maybe Integer) Source #

The total number of rows in the dataset.

rowInfo_rowsDropped :: Lens' RowInfo (Maybe Integer) Source #

The number of rows that were not ingested.