Class: Aws::ForecastService::Types::PredictorExecution
- Inherits:
-
Struct
- Object
- Struct
- Aws::ForecastService::Types::PredictorExecution
- Defined in:
- gems/aws-sdk-forecastservice/lib/aws-sdk-forecastservice/types.rb
Overview
The algorithm used to perform a backtest and the status of those tests.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#algorithm_arn ⇒ String
The ARN of the algorithm used to test the predictor.
-
#test_windows ⇒ Array<Types::TestWindowSummary>
An array of test windows used to evaluate the algorithm.
Instance Attribute Details
#algorithm_arn ⇒ String
The ARN of the algorithm used to test the predictor.
5925 5926 5927 5928 5929 5930 |
# File 'gems/aws-sdk-forecastservice/lib/aws-sdk-forecastservice/types.rb', line 5925 class PredictorExecution < Struct.new( :algorithm_arn, :test_windows) SENSITIVE = [] include Aws::Structure end |
#test_windows ⇒ Array<Types::TestWindowSummary>
An array of test windows used to evaluate the algorithm. The
NumberOfBacktestWindows
from the object determines the number of
windows in the array.
5925 5926 5927 5928 5929 5930 |
# File 'gems/aws-sdk-forecastservice/lib/aws-sdk-forecastservice/types.rb', line 5925 class PredictorExecution < Struct.new( :algorithm_arn, :test_windows) SENSITIVE = [] include Aws::Structure end |