Class: Aws::PI::Types::DataPoint
- Inherits:
-
Struct
- Object
- Struct
- Aws::PI::Types::DataPoint
- Includes:
- Structure
- Defined in:
- 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
-
#timestamp ⇒ Time
The time, in epoch format, associated with a particular ‘Value`.
-
#value ⇒ Float
The actual value associated with a particular ‘Timestamp`.
Instance Attribute Details
#timestamp ⇒ Time
The time, in epoch format, associated with a particular ‘Value`.
192 193 194 195 196 197 |
# File 'lib/aws-sdk-pi/types.rb', line 192 class DataPoint < Struct.new( :timestamp, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ Float
The actual value associated with a particular ‘Timestamp`.
192 193 194 195 196 197 |
# File 'lib/aws-sdk-pi/types.rb', line 192 class DataPoint < Struct.new( :timestamp, :value) SENSITIVE = [] include Aws::Structure end |