amazonka-lookoutequipment-2.0: Amazon Lookout for Equipment 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.LookoutEquipment.Types.IngestedFilesSummary

Description

 
Synopsis

Documentation

data IngestedFilesSummary Source #

Gives statistics about how many files have been ingested, and which files have not been ingested, for a particular ingestion job.

See: newIngestedFilesSummary smart constructor.

Constructors

IngestedFilesSummary' 

Fields

  • discardedFiles :: Maybe [S3Object]

    Indicates the number of files that were discarded. A file could be discarded because its format is invalid (for example, a jpg or pdf) or not readable.

  • totalNumberOfFiles :: Int

    Indicates the total number of files that were submitted for ingestion.

  • ingestedNumberOfFiles :: Int

    Indicates the number of files that were successfully ingested.

Instances

Instances details
FromJSON IngestedFilesSummary Source # 
Instance details

Defined in Amazonka.LookoutEquipment.Types.IngestedFilesSummary

Generic IngestedFilesSummary Source # 
Instance details

Defined in Amazonka.LookoutEquipment.Types.IngestedFilesSummary

Associated Types

type Rep IngestedFilesSummary :: Type -> Type #

Read IngestedFilesSummary Source # 
Instance details

Defined in Amazonka.LookoutEquipment.Types.IngestedFilesSummary

Show IngestedFilesSummary Source # 
Instance details

Defined in Amazonka.LookoutEquipment.Types.IngestedFilesSummary

NFData IngestedFilesSummary Source # 
Instance details

Defined in Amazonka.LookoutEquipment.Types.IngestedFilesSummary

Methods

rnf :: IngestedFilesSummary -> () #

Eq IngestedFilesSummary Source # 
Instance details

Defined in Amazonka.LookoutEquipment.Types.IngestedFilesSummary

Hashable IngestedFilesSummary Source # 
Instance details

Defined in Amazonka.LookoutEquipment.Types.IngestedFilesSummary

type Rep IngestedFilesSummary Source # 
Instance details

Defined in Amazonka.LookoutEquipment.Types.IngestedFilesSummary

type Rep IngestedFilesSummary = D1 ('MetaData "IngestedFilesSummary" "Amazonka.LookoutEquipment.Types.IngestedFilesSummary" "amazonka-lookoutequipment-2.0-FBtgEViQ46F6elHeNaa8oC" 'False) (C1 ('MetaCons "IngestedFilesSummary'" 'PrefixI 'True) (S1 ('MetaSel ('Just "discardedFiles") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [S3Object])) :*: (S1 ('MetaSel ('Just "totalNumberOfFiles") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "ingestedNumberOfFiles") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newIngestedFilesSummary Source #

Create a value of IngestedFilesSummary 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:discardedFiles:IngestedFilesSummary', ingestedFilesSummary_discardedFiles - Indicates the number of files that were discarded. A file could be discarded because its format is invalid (for example, a jpg or pdf) or not readable.

$sel:totalNumberOfFiles:IngestedFilesSummary', ingestedFilesSummary_totalNumberOfFiles - Indicates the total number of files that were submitted for ingestion.

$sel:ingestedNumberOfFiles:IngestedFilesSummary', ingestedFilesSummary_ingestedNumberOfFiles - Indicates the number of files that were successfully ingested.

ingestedFilesSummary_discardedFiles :: Lens' IngestedFilesSummary (Maybe [S3Object]) Source #

Indicates the number of files that were discarded. A file could be discarded because its format is invalid (for example, a jpg or pdf) or not readable.

ingestedFilesSummary_totalNumberOfFiles :: Lens' IngestedFilesSummary Int Source #

Indicates the total number of files that were submitted for ingestion.

ingestedFilesSummary_ingestedNumberOfFiles :: Lens' IngestedFilesSummary Int Source #

Indicates the number of files that were successfully ingested.