Class: Aws::ForecastQueryService::Types::DataPoint
- Inherits:
-
Struct
- Object
- Struct
- Aws::ForecastQueryService::Types::DataPoint
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-forecastqueryservice/types.rb
Overview
The forecast value for a specific date. Part of the Forecast object.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#timestamp ⇒ String
The timestamp of the specific forecast.
-
#value ⇒ Float
The forecast value.
Instance Attribute Details
#timestamp ⇒ String
The timestamp of the specific forecast.
25 26 27 28 29 30 |
# File 'lib/aws-sdk-forecastqueryservice/types.rb', line 25 class DataPoint < Struct.new( :timestamp, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ Float
The forecast value.
25 26 27 28 29 30 |
# File 'lib/aws-sdk-forecastqueryservice/types.rb', line 25 class DataPoint < Struct.new( :timestamp, :value) SENSITIVE = [] include Aws::Structure end |