amazonka-rekognition-2.0: Amazon Rekognition SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.Rekognition.Types.DatasetStats

Description

 
Synopsis

Documentation

data DatasetStats Source #

Provides statistics about a dataset. For more information, see DescribeDataset.

See: newDatasetStats smart constructor.

Constructors

DatasetStats' 

Fields

Instances

Instances details
FromJSON DatasetStats Source # 
Instance details

Defined in Amazonka.Rekognition.Types.DatasetStats

Generic DatasetStats Source # 
Instance details

Defined in Amazonka.Rekognition.Types.DatasetStats

Associated Types

type Rep DatasetStats :: Type -> Type #

Read DatasetStats Source # 
Instance details

Defined in Amazonka.Rekognition.Types.DatasetStats

Show DatasetStats Source # 
Instance details

Defined in Amazonka.Rekognition.Types.DatasetStats

NFData DatasetStats Source # 
Instance details

Defined in Amazonka.Rekognition.Types.DatasetStats

Methods

rnf :: DatasetStats -> () #

Eq DatasetStats Source # 
Instance details

Defined in Amazonka.Rekognition.Types.DatasetStats

Hashable DatasetStats Source # 
Instance details

Defined in Amazonka.Rekognition.Types.DatasetStats

type Rep DatasetStats Source # 
Instance details

Defined in Amazonka.Rekognition.Types.DatasetStats

type Rep DatasetStats = D1 ('MetaData "DatasetStats" "Amazonka.Rekognition.Types.DatasetStats" "amazonka-rekognition-2.0-EaCrS9R3rWADqefEZvOx5B" 'False) (C1 ('MetaCons "DatasetStats'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "errorEntries") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)) :*: S1 ('MetaSel ('Just "labeledEntries") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural))) :*: (S1 ('MetaSel ('Just "totalEntries") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)) :*: S1 ('MetaSel ('Just "totalLabels") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)))))

newDatasetStats :: DatasetStats Source #

Create a value of DatasetStats 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:errorEntries:DatasetStats', datasetStats_errorEntries - The total number of entries that contain at least one error.

$sel:labeledEntries:DatasetStats', datasetStats_labeledEntries - The total number of images in the dataset that have labels.

$sel:totalEntries:DatasetStats', datasetStats_totalEntries - The total number of images in the dataset.

$sel:totalLabels:DatasetStats', datasetStats_totalLabels - The total number of labels declared in the dataset.

datasetStats_errorEntries :: Lens' DatasetStats (Maybe Natural) Source #

The total number of entries that contain at least one error.

datasetStats_labeledEntries :: Lens' DatasetStats (Maybe Natural) Source #

The total number of images in the dataset that have labels.

datasetStats_totalEntries :: Lens' DatasetStats (Maybe Natural) Source #

The total number of images in the dataset.

datasetStats_totalLabels :: Lens' DatasetStats (Maybe Natural) Source #

The total number of labels declared in the dataset.