Class: Aws::CostExplorer::Types::ForecastResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::CostExplorer::Types::ForecastResult
- Defined in:
- gems/aws-sdk-costexplorer/lib/aws-sdk-costexplorer/types.rb
Overview
The forecast that's created for your query.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#mean_value ⇒ String
The mean value of the forecast.
-
#prediction_interval_lower_bound ⇒ String
The lower limit for the prediction interval.
-
#prediction_interval_upper_bound ⇒ String
The upper limit for the prediction interval.
-
#time_period ⇒ Types::DateInterval
The period of time that the forecast covers.
Instance Attribute Details
#mean_value ⇒ String
The mean value of the forecast.
1936 1937 1938 1939 1940 1941 1942 1943 |
# File 'gems/aws-sdk-costexplorer/lib/aws-sdk-costexplorer/types.rb', line 1936 class ForecastResult < Struct.new( :time_period, :mean_value, :prediction_interval_lower_bound, :prediction_interval_upper_bound) SENSITIVE = [] include Aws::Structure end |
#prediction_interval_lower_bound ⇒ String
The lower limit for the prediction interval.
1936 1937 1938 1939 1940 1941 1942 1943 |
# File 'gems/aws-sdk-costexplorer/lib/aws-sdk-costexplorer/types.rb', line 1936 class ForecastResult < Struct.new( :time_period, :mean_value, :prediction_interval_lower_bound, :prediction_interval_upper_bound) SENSITIVE = [] include Aws::Structure end |
#prediction_interval_upper_bound ⇒ String
The upper limit for the prediction interval.
1936 1937 1938 1939 1940 1941 1942 1943 |
# File 'gems/aws-sdk-costexplorer/lib/aws-sdk-costexplorer/types.rb', line 1936 class ForecastResult < Struct.new( :time_period, :mean_value, :prediction_interval_lower_bound, :prediction_interval_upper_bound) SENSITIVE = [] include Aws::Structure end |
#time_period ⇒ Types::DateInterval
The period of time that the forecast covers.
1936 1937 1938 1939 1940 1941 1942 1943 |
# File 'gems/aws-sdk-costexplorer/lib/aws-sdk-costexplorer/types.rb', line 1936 class ForecastResult < Struct.new( :time_period, :mean_value, :prediction_interval_lower_bound, :prediction_interval_upper_bound) SENSITIVE = [] include Aws::Structure end |