amazonka-iotsitewise-2.0: Amazon IoT SiteWise SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.IoTSiteWise.Types.Aggregates

Description

 
Synopsis

Documentation

data Aggregates Source #

Contains the (pre-calculated) aggregate values for an asset property.

See: newAggregates smart constructor.

Constructors

Aggregates' 

Fields

Instances

Instances details
FromJSON Aggregates Source # 
Instance details

Defined in Amazonka.IoTSiteWise.Types.Aggregates

Generic Aggregates Source # 
Instance details

Defined in Amazonka.IoTSiteWise.Types.Aggregates

Associated Types

type Rep Aggregates :: Type -> Type #

Read Aggregates Source # 
Instance details

Defined in Amazonka.IoTSiteWise.Types.Aggregates

Show Aggregates Source # 
Instance details

Defined in Amazonka.IoTSiteWise.Types.Aggregates

NFData Aggregates Source # 
Instance details

Defined in Amazonka.IoTSiteWise.Types.Aggregates

Methods

rnf :: Aggregates -> () #

Eq Aggregates Source # 
Instance details

Defined in Amazonka.IoTSiteWise.Types.Aggregates

Hashable Aggregates Source # 
Instance details

Defined in Amazonka.IoTSiteWise.Types.Aggregates

type Rep Aggregates Source # 
Instance details

Defined in Amazonka.IoTSiteWise.Types.Aggregates

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: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:maximum:Aggregates', aggregates_maximum - The maximum value of 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_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_maximum :: Lens' Aggregates (Maybe Double) Source #

The maximum value of 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.