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)


1345
1346
1347
1348
1349
1350
# File 'gems/aws-sdk-timestreamquery/lib/aws-sdk-timestreamquery/types.rb', line 1345

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

#valueTypes::Datum

The measure value for the data point.

Returns:



1345
1346
1347
1348
1349
1350
# File 'gems/aws-sdk-timestreamquery/lib/aws-sdk-timestreamquery/types.rb', line 1345

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