Class: Aws::PI::Types::DataPoint

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-pi/lib/aws-sdk-pi/types.rb

Overview

A timestamp, and a single numerical value, which together represent a measurement at a particular point in time.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#timestampTime

The time, in epoch format, associated with a particular Value.

Returns:

  • (Time)


192
193
194
195
196
197
# File 'gems/aws-sdk-pi/lib/aws-sdk-pi/types.rb', line 192

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

#valueFloat

The actual value associated with a particular Timestamp.

Returns:

  • (Float)


192
193
194
195
196
197
# File 'gems/aws-sdk-pi/lib/aws-sdk-pi/types.rb', line 192

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