libZSservicesZSamazonka-s3ZSamazonka-s3
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.S3.Types.Stats

Description

 
Synopsis

Documentation

data Stats Source #

Container for the stats details.

See: newStats smart constructor.

Constructors

Stats' 

Fields

Instances

Instances details
Eq Stats Source # 
Instance details

Defined in Amazonka.S3.Types.Stats

Methods

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

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

Read Stats Source # 
Instance details

Defined in Amazonka.S3.Types.Stats

Show Stats Source # 
Instance details

Defined in Amazonka.S3.Types.Stats

Methods

showsPrec :: Int -> Stats -> ShowS #

show :: Stats -> String #

showList :: [Stats] -> ShowS #

Generic Stats Source # 
Instance details

Defined in Amazonka.S3.Types.Stats

Associated Types

type Rep Stats :: Type -> Type #

Methods

from :: Stats -> Rep Stats x #

to :: Rep Stats x -> Stats #

NFData Stats Source # 
Instance details

Defined in Amazonka.S3.Types.Stats

Methods

rnf :: Stats -> () #

Hashable Stats Source # 
Instance details

Defined in Amazonka.S3.Types.Stats

Methods

hashWithSalt :: Int -> Stats -> Int #

hash :: Stats -> Int #

FromXML Stats Source # 
Instance details

Defined in Amazonka.S3.Types.Stats

Methods

parseXML :: [Node] -> Either String Stats #

type Rep Stats Source # 
Instance details

Defined in Amazonka.S3.Types.Stats

type Rep Stats = D1 ('MetaData "Stats" "Amazonka.S3.Types.Stats" "libZSservicesZSamazonka-s3ZSamazonka-s3" 'False) (C1 ('MetaCons "Stats'" 'PrefixI 'True) (S1 ('MetaSel ('Just "bytesReturned") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Integer)) :*: (S1 ('MetaSel ('Just "bytesScanned") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Integer)) :*: S1 ('MetaSel ('Just "bytesProcessed") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Integer)))))

newStats :: Stats Source #

Create a value of Stats 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:bytesReturned:Stats', stats_bytesReturned - The total number of bytes of records payload data returned.

$sel:bytesScanned:Stats', stats_bytesScanned - The total number of object bytes scanned.

$sel:bytesProcessed:Stats', stats_bytesProcessed - The total number of uncompressed object bytes processed.

stats_bytesReturned :: Lens' Stats (Maybe Integer) Source #

The total number of bytes of records payload data returned.

stats_bytesScanned :: Lens' Stats (Maybe Integer) Source #

The total number of object bytes scanned.

stats_bytesProcessed :: Lens' Stats (Maybe Integer) Source #

The total number of uncompressed object bytes processed.