Class: Aws::TimestreamQuery::Types::TimeSeriesDataPoint
- Inherits:
-
Struct
- Object
- Struct
- Aws::TimestreamQuery::Types::TimeSeriesDataPoint
- Defined in:
- gems/aws-sdk-timestreamquery/lib/aws-sdk-timestreamquery/types.rb
Overview
The timeseries data type represents the values of a measure over time. A time series is an array of rows of timestamps and measure values, with rows sorted in ascending order of time. A TimeSeriesDataPoint is a single data point in the time series. It represents a tuple of (time, measure value) in a time series.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#time ⇒ String
The timestamp when the measure value was collected.
-
#value ⇒ Types::Datum
The measure value for the data point.
Instance Attribute Details
#time ⇒ String
The timestamp when the measure value was collected.
1685 1686 1687 1688 1689 1690 |
# File 'gems/aws-sdk-timestreamquery/lib/aws-sdk-timestreamquery/types.rb', line 1685 class TimeSeriesDataPoint < Struct.new( :time, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ Types::Datum
The measure value for the data point.
1685 1686 1687 1688 1689 1690 |
# File 'gems/aws-sdk-timestreamquery/lib/aws-sdk-timestreamquery/types.rb', line 1685 class TimeSeriesDataPoint < Struct.new( :time, :value) SENSITIVE = [] include Aws::Structure end |