Class: Aws::IoTSiteWise::Types::Aggregates
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTSiteWise::Types::Aggregates
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iotsitewise/types.rb
Overview
Contains the (pre-calculated) aggregate values for an asset property.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#average ⇒ Float
The average (mean) value of the time series over a time interval window.
-
#count ⇒ Float
The count of data points in the time series over a time interval window.
-
#maximum ⇒ Float
The maximum value of the time series over a time interval window.
-
#minimum ⇒ Float
The minimum value of the time series over a time interval window.
-
#standard_deviation ⇒ Float
The standard deviation of the time series over a time interval window.
-
#sum ⇒ Float
The sum of the time series over a time interval window.
Instance Attribute Details
#average ⇒ Float
The average (mean) value of the time series over a time interval window.
173 174 175 176 177 178 179 180 181 182 |
# File 'lib/aws-sdk-iotsitewise/types.rb', line 173 class Aggregates < Struct.new( :average, :count, :maximum, :minimum, :sum, :standard_deviation) SENSITIVE = [] include Aws::Structure end |
#count ⇒ Float
The count of data points in the time series over a time interval window.
173 174 175 176 177 178 179 180 181 182 |
# File 'lib/aws-sdk-iotsitewise/types.rb', line 173 class Aggregates < Struct.new( :average, :count, :maximum, :minimum, :sum, :standard_deviation) SENSITIVE = [] include Aws::Structure end |
#maximum ⇒ Float
The maximum value of the time series over a time interval window.
173 174 175 176 177 178 179 180 181 182 |
# File 'lib/aws-sdk-iotsitewise/types.rb', line 173 class Aggregates < Struct.new( :average, :count, :maximum, :minimum, :sum, :standard_deviation) SENSITIVE = [] include Aws::Structure end |
#minimum ⇒ Float
The minimum value of the time series over a time interval window.
173 174 175 176 177 178 179 180 181 182 |
# File 'lib/aws-sdk-iotsitewise/types.rb', line 173 class Aggregates < Struct.new( :average, :count, :maximum, :minimum, :sum, :standard_deviation) SENSITIVE = [] include Aws::Structure end |
#standard_deviation ⇒ Float
The standard deviation of the time series over a time interval window.
173 174 175 176 177 178 179 180 181 182 |
# File 'lib/aws-sdk-iotsitewise/types.rb', line 173 class Aggregates < Struct.new( :average, :count, :maximum, :minimum, :sum, :standard_deviation) SENSITIVE = [] include Aws::Structure end |
#sum ⇒ Float
The sum of the time series over a time interval window.
173 174 175 176 177 178 179 180 181 182 |
# File 'lib/aws-sdk-iotsitewise/types.rb', line 173 class Aggregates < Struct.new( :average, :count, :maximum, :minimum, :sum, :standard_deviation) SENSITIVE = [] include Aws::Structure end |