libZSservicesZSamazonka-cloudwatchZSamazonka-cloudwatch
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.CloudWatch.Types.StatisticSet

Description

 
Synopsis

Documentation

data StatisticSet Source #

Represents a set of statistics that describes a specific metric.

See: newStatisticSet smart constructor.

Constructors

StatisticSet' 

Fields

Instances

Instances details
Eq StatisticSet Source # 
Instance details

Defined in Amazonka.CloudWatch.Types.StatisticSet

Read StatisticSet Source # 
Instance details

Defined in Amazonka.CloudWatch.Types.StatisticSet

Show StatisticSet Source # 
Instance details

Defined in Amazonka.CloudWatch.Types.StatisticSet

Generic StatisticSet Source # 
Instance details

Defined in Amazonka.CloudWatch.Types.StatisticSet

Associated Types

type Rep StatisticSet :: Type -> Type #

NFData StatisticSet Source # 
Instance details

Defined in Amazonka.CloudWatch.Types.StatisticSet

Methods

rnf :: StatisticSet -> () #

Hashable StatisticSet Source # 
Instance details

Defined in Amazonka.CloudWatch.Types.StatisticSet

ToQuery StatisticSet Source # 
Instance details

Defined in Amazonka.CloudWatch.Types.StatisticSet

type Rep StatisticSet Source # 
Instance details

Defined in Amazonka.CloudWatch.Types.StatisticSet

type Rep StatisticSet = D1 ('MetaData "StatisticSet" "Amazonka.CloudWatch.Types.StatisticSet" "libZSservicesZSamazonka-cloudwatchZSamazonka-cloudwatch" 'False) (C1 ('MetaCons "StatisticSet'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "sampleCount") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Double) :*: S1 ('MetaSel ('Just "sum") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Double)) :*: (S1 ('MetaSel ('Just "minimum") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Double) :*: S1 ('MetaSel ('Just "maximum") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Double))))

newStatisticSet 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:sampleCount:StatisticSet', statisticSet_sampleCount - The number of samples used for the statistic set.

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

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

$sel:maximum:StatisticSet', statisticSet_maximum - The maximum value of the sample set.

statisticSet_sampleCount :: Lens' StatisticSet Double Source #

The number of samples used for the statistic set.

statisticSet_sum :: Lens' StatisticSet Double Source #

The sum of values for the sample set.

statisticSet_minimum :: Lens' StatisticSet Double Source #

The minimum value of the sample set.

statisticSet_maximum :: Lens' StatisticSet Double Source #

The maximum value of the sample set.