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 Aggregates = Aggregates' {}
- newAggregates :: Aggregates
- aggregates_maximum :: Lens' Aggregates (Maybe Double)
- aggregates_average :: Lens' Aggregates (Maybe Double)
- aggregates_count :: Lens' Aggregates (Maybe Double)
- aggregates_minimum :: Lens' Aggregates (Maybe Double)
- aggregates_standardDeviation :: Lens' Aggregates (Maybe Double)
- aggregates_sum :: Lens' Aggregates (Maybe Double)
Documentation
data Aggregates Source #
Contains the (pre-calculated) aggregate values for an asset property.
See: newAggregates
smart constructor.
Aggregates' | |
|
Instances
newAggregates :: Aggregates Source #
Create a value of Aggregates
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:Aggregates'
, aggregates_maximum
- The maximum value of the time series over a time interval window.
$sel:average:Aggregates'
, aggregates_average
- The average (mean) value of the time series over a time interval window.
$sel:count:Aggregates'
, aggregates_count
- The count of data points in the time series over a time interval window.
$sel:minimum:Aggregates'
, aggregates_minimum
- The minimum value of the time series over a time interval window.
$sel:standardDeviation:Aggregates'
, aggregates_standardDeviation
- The standard deviation of the time series over a time interval window.
$sel:sum:Aggregates'
, aggregates_sum
- The sum of the time series over a time interval window.
aggregates_maximum :: Lens' Aggregates (Maybe Double) Source #
The maximum value of the time series over a time interval window.
aggregates_average :: Lens' Aggregates (Maybe Double) Source #
The average (mean) value of the time series over a time interval window.
aggregates_count :: Lens' Aggregates (Maybe Double) Source #
The count of data points in the time series over a time interval window.
aggregates_minimum :: Lens' Aggregates (Maybe Double) Source #
The minimum value of the time series over a time interval window.
aggregates_standardDeviation :: Lens' Aggregates (Maybe Double) Source #
The standard deviation of the time series over a time interval window.
aggregates_sum :: Lens' Aggregates (Maybe Double) Source #
The sum of the time series over a time interval window.