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 Statistics = Statistics' {}
- newStatistics :: Statistics
- statistics_stdDeviation :: Lens' Statistics (Maybe Double)
- statistics_maximum :: Lens' Statistics (Maybe Double)
- statistics_average :: Lens' Statistics (Maybe Double)
- statistics_count :: Lens' Statistics (Maybe Int)
- statistics_minimum :: Lens' Statistics (Maybe Double)
- statistics_variance :: Lens' Statistics (Maybe Double)
- statistics_sumOfSquares :: Lens' Statistics (Maybe Double)
- statistics_sum :: Lens' Statistics (Maybe Double)
Documentation
data Statistics Source #
A map of key-value pairs for all supported statistics. Currently, only count is supported.
See: newStatistics
smart constructor.
Statistics' | |
|
Instances
newStatistics :: Statistics Source #
Create a value of Statistics
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:stdDeviation:Statistics'
, statistics_stdDeviation
- The standard deviation of the aggregated field values.
$sel:maximum:Statistics'
, statistics_maximum
- The maximum aggregated field value.
$sel:average:Statistics'
, statistics_average
- The average of the aggregated field values.
$sel:count:Statistics'
, statistics_count
- The count of things that match the query.
$sel:minimum:Statistics'
, statistics_minimum
- The minimum aggregated field value.
$sel:variance:Statistics'
, statistics_variance
- The variance of the aggregated field values.
$sel:sumOfSquares:Statistics'
, statistics_sumOfSquares
- The sum of the squares of the aggregated field values.
$sel:sum:Statistics'
, statistics_sum
- The sum of the aggregated field values.
statistics_stdDeviation :: Lens' Statistics (Maybe Double) Source #
The standard deviation of the aggregated field values.
statistics_maximum :: Lens' Statistics (Maybe Double) Source #
The maximum aggregated field value.
statistics_average :: Lens' Statistics (Maybe Double) Source #
The average of the aggregated field values.
statistics_count :: Lens' Statistics (Maybe Int) Source #
The count of things that match the query.
statistics_minimum :: Lens' Statistics (Maybe Double) Source #
The minimum aggregated field value.
statistics_variance :: Lens' Statistics (Maybe Double) Source #
The variance of the aggregated field values.
statistics_sumOfSquares :: Lens' Statistics (Maybe Double) Source #
The sum of the squares of the aggregated field values.
statistics_sum :: Lens' Statistics (Maybe Double) Source #
The sum of the aggregated field values.