Class: Aws::TimestreamQuery::Types::TimeSeriesDataPoint

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#timeString

The timestamp when the measure value was collected.

Returns:

  • (String)


1312
1313
1314
1315
1316
1317
# File 'gems/aws-sdk-timestreamquery/lib/aws-sdk-timestreamquery/types.rb', line 1312

class TimeSeriesDataPoint < Struct.new(
  :time,
  :value)
  SENSITIVE = []
  include Aws::Structure
end

#valueTypes::Datum

The measure value for the data point.

Returns:



1312
1313
1314
1315
1316
1317
# File 'gems/aws-sdk-timestreamquery/lib/aws-sdk-timestreamquery/types.rb', line 1312

class TimeSeriesDataPoint < Struct.new(
  :time,
  :value)
  SENSITIVE = []
  include Aws::Structure
end