Class: Aws::ForecastQueryService::Types::DataPoint

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-forecastqueryservice/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

Instance Attribute Details

#timestampString

The timestamp of the specific forecast.

Returns:

  • (String)


25
26
27
28
29
30
# File 'gems/aws-sdk-forecastqueryservice/lib/aws-sdk-forecastqueryservice/types.rb', line 25

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

#valueFloat

The forecast value.

Returns:

  • (Float)


25
26
27
28
29
30
# File 'gems/aws-sdk-forecastqueryservice/lib/aws-sdk-forecastqueryservice/types.rb', line 25

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