Class: Aws::ForecastService::Types::MetricResult

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

Overview

An individual metric Forecast calculated when monitoring predictor usage. You can compare the value for this metric to the metric's value in the Baseline to see how your predictor's performance is changing.

For more information about metrics generated by Forecast see Evaluating Predictor Accuracy

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#metric_nameString

The name of the metric.

Returns:

  • (String)


5595
5596
5597
5598
5599
5600
# File 'gems/aws-sdk-forecastservice/lib/aws-sdk-forecastservice/types.rb', line 5595

class MetricResult < Struct.new(
  :metric_name,
  :metric_value)
  SENSITIVE = []
  include Aws::Structure
end

#metric_valueFloat

The value for the metric.

Returns:

  • (Float)


5595
5596
5597
5598
5599
5600
# File 'gems/aws-sdk-forecastservice/lib/aws-sdk-forecastservice/types.rb', line 5595

class MetricResult < Struct.new(
  :metric_name,
  :metric_value)
  SENSITIVE = []
  include Aws::Structure
end