| Copyright | (c) 2013-2023 Brendan Hay |
|---|---|
| License | Mozilla Public License, v. 2.0. |
| Maintainer | Brendan Hay |
| Stability | auto-generated |
| Portability | non-portable (GHC extensions) |
| Safe Haskell | Safe-Inferred |
| Language | Haskell2010 |
Amazonka.CloudWatch.Types.StatisticSet
Description
Synopsis
- data StatisticSet = StatisticSet' {}
- newStatisticSet :: Double -> Double -> Double -> Double -> StatisticSet
- statisticSet_sampleCount :: Lens' StatisticSet Double
- statisticSet_sum :: Lens' StatisticSet Double
- statisticSet_minimum :: Lens' StatisticSet Double
- statisticSet_maximum :: Lens' StatisticSet Double
Documentation
data StatisticSet Source #
Represents a set of statistics that describes a specific metric.
See: newStatisticSet smart constructor.
Constructors
| StatisticSet' | |
Instances
Arguments
| :: Double | |
| -> Double | |
| -> Double | |
| -> Double | |
| -> StatisticSet |
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.