public static interface PredictorExecution.Builder extends SdkPojo, CopyableBuilder<PredictorExecution.Builder,PredictorExecution>
| Modifier and Type | Method and Description |
|---|---|
PredictorExecution.Builder |
algorithmArn(String algorithmArn)
The ARN of the algorithm used to test the predictor.
|
PredictorExecution.Builder |
testWindows(Collection<TestWindowSummary> testWindows)
An array of test windows used to evaluate the algorithm.
|
PredictorExecution.Builder |
testWindows(Consumer<TestWindowSummary.Builder>... testWindows)
An array of test windows used to evaluate the algorithm.
|
PredictorExecution.Builder |
testWindows(TestWindowSummary... testWindows)
An array of test windows used to evaluate the algorithm.
|
equalsBySdkFields, sdkFieldscopyapplyMutation, buildPredictorExecution.Builder algorithmArn(String algorithmArn)
The ARN of the algorithm used to test the predictor.
algorithmArn - The ARN of the algorithm used to test the predictor.PredictorExecution.Builder testWindows(Collection<TestWindowSummary> testWindows)
An array of test windows used to evaluate the algorithm. The NumberOfBacktestWindows from the
object determines the number of windows in the array.
testWindows - An array of test windows used to evaluate the algorithm. The NumberOfBacktestWindows from
the object determines the number of windows in the array.PredictorExecution.Builder testWindows(TestWindowSummary... testWindows)
An array of test windows used to evaluate the algorithm. The NumberOfBacktestWindows from the
object determines the number of windows in the array.
testWindows - An array of test windows used to evaluate the algorithm. The NumberOfBacktestWindows from
the object determines the number of windows in the array.PredictorExecution.Builder testWindows(Consumer<TestWindowSummary.Builder>... testWindows)
An array of test windows used to evaluate the algorithm. The NumberOfBacktestWindows from the
object determines the number of windows in the array.
List.Builder avoiding the
need to create one manually via List#builder() .
When the Consumer completes, List.Builder#build() is called immediately
and its result is passed to #testWindows(List) .testWindows - a consumer that will call methods on List.Builder #testWindows(List) Copyright © 2020. All rights reserved.