libZSservicesZSamazonka-xrayZSamazonka-xray
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.XRay.Types.ErrorStatistics

Description

 
Synopsis

Documentation

data ErrorStatistics Source #

Information about requests that failed with a 4xx Client Error status code.

See: newErrorStatistics smart constructor.

Constructors

ErrorStatistics' 

Fields

Instances

Instances details
Eq ErrorStatistics Source # 
Instance details

Defined in Amazonka.XRay.Types.ErrorStatistics

Read ErrorStatistics Source # 
Instance details

Defined in Amazonka.XRay.Types.ErrorStatistics

Show ErrorStatistics Source # 
Instance details

Defined in Amazonka.XRay.Types.ErrorStatistics

Generic ErrorStatistics Source # 
Instance details

Defined in Amazonka.XRay.Types.ErrorStatistics

Associated Types

type Rep ErrorStatistics :: Type -> Type #

NFData ErrorStatistics Source # 
Instance details

Defined in Amazonka.XRay.Types.ErrorStatistics

Methods

rnf :: ErrorStatistics -> () #

Hashable ErrorStatistics Source # 
Instance details

Defined in Amazonka.XRay.Types.ErrorStatistics

FromJSON ErrorStatistics Source # 
Instance details

Defined in Amazonka.XRay.Types.ErrorStatistics

type Rep ErrorStatistics Source # 
Instance details

Defined in Amazonka.XRay.Types.ErrorStatistics

type Rep ErrorStatistics = D1 ('MetaData "ErrorStatistics" "Amazonka.XRay.Types.ErrorStatistics" "libZSservicesZSamazonka-xrayZSamazonka-xray" 'False) (C1 ('MetaCons "ErrorStatistics'" 'PrefixI 'True) (S1 ('MetaSel ('Just "otherCount") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Integer)) :*: (S1 ('MetaSel ('Just "throttleCount") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Integer)) :*: S1 ('MetaSel ('Just "totalCount") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Integer)))))

newErrorStatistics :: ErrorStatistics Source #

Create a value of ErrorStatistics 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:otherCount:ErrorStatistics', errorStatistics_otherCount - The number of requests that failed with untracked 4xx Client Error status codes.

$sel:throttleCount:ErrorStatistics', errorStatistics_throttleCount - The number of requests that failed with a 419 throttling status code.

$sel:totalCount:ErrorStatistics', errorStatistics_totalCount - The total number of requests that failed with a 4xx Client Error status code.

errorStatistics_otherCount :: Lens' ErrorStatistics (Maybe Integer) Source #

The number of requests that failed with untracked 4xx Client Error status codes.

errorStatistics_throttleCount :: Lens' ErrorStatistics (Maybe Integer) Source #

The number of requests that failed with a 419 throttling status code.

errorStatistics_totalCount :: Lens' ErrorStatistics (Maybe Integer) Source #

The total number of requests that failed with a 4xx Client Error status code.