Copyright | (c) 2013-2021 Brendan Hay |
---|---|
License | Mozilla Public License, v. 2.0. |
Maintainer | Brendan Hay <brendan.g.hay+amazonka@gmail.com> |
Stability | auto-generated |
Portability | non-portable (GHC extensions) |
Safe Haskell | None |
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.
Instances
:: 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.