amazonka-mwaa-2.0: Amazon MWAA 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.MwAA.Types.StatisticSet

Description

 
Synopsis

Documentation

data StatisticSet Source #

Internal only. Represents a set of statistics that describe a specific metric. To learn more about the metrics published to Amazon CloudWatch, see Amazon MWAA performance metrics in Amazon CloudWatch.

See: newStatisticSet smart constructor.

Constructors

StatisticSet' 

Fields

Instances

Instances details
ToJSON StatisticSet Source # 
Instance details

Defined in Amazonka.MwAA.Types.StatisticSet

Generic StatisticSet Source # 
Instance details

Defined in Amazonka.MwAA.Types.StatisticSet

Associated Types

type Rep StatisticSet :: Type -> Type #

Read StatisticSet Source # 
Instance details

Defined in Amazonka.MwAA.Types.StatisticSet

Show StatisticSet Source # 
Instance details

Defined in Amazonka.MwAA.Types.StatisticSet

NFData StatisticSet Source # 
Instance details

Defined in Amazonka.MwAA.Types.StatisticSet

Methods

rnf :: StatisticSet -> () #

Eq StatisticSet Source # 
Instance details

Defined in Amazonka.MwAA.Types.StatisticSet

Hashable StatisticSet Source # 
Instance details

Defined in Amazonka.MwAA.Types.StatisticSet

type Rep StatisticSet Source # 
Instance details

Defined in Amazonka.MwAA.Types.StatisticSet

type Rep StatisticSet = D1 ('MetaData "StatisticSet" "Amazonka.MwAA.Types.StatisticSet" "amazonka-mwaa-2.0-KORB5SeCyuF7wioeYKG3eR" 'False) (C1 ('MetaCons "StatisticSet'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "maximum") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Double)) :*: S1 ('MetaSel ('Just "minimum") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Double))) :*: (S1 ('MetaSel ('Just "sampleCount") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Int)) :*: S1 ('MetaSel ('Just "sum") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Double)))))

newStatisticSet :: StatisticSet Source #

Create a value of StatisticSet 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:maximum:StatisticSet', statisticSet_maximum - Internal only. The maximum value of the sample set.

$sel:minimum:StatisticSet', statisticSet_minimum - Internal only. The minimum value of the sample set.

$sel:sampleCount:StatisticSet', statisticSet_sampleCount - Internal only. The number of samples used for the statistic set.

$sel:sum:StatisticSet', statisticSet_sum - Internal only. The sum of values for the sample set.

statisticSet_maximum :: Lens' StatisticSet (Maybe Double) Source #

Internal only. The maximum value of the sample set.

statisticSet_minimum :: Lens' StatisticSet (Maybe Double) Source #

Internal only. The minimum value of the sample set.

statisticSet_sampleCount :: Lens' StatisticSet (Maybe Int) Source #

Internal only. The number of samples used for the statistic set.

statisticSet_sum :: Lens' StatisticSet (Maybe Double) Source #

Internal only. The sum of values for the sample set.