Interface PredictorExecutionDetails.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<PredictorExecutionDetails.Builder,PredictorExecutionDetails>,SdkBuilder<PredictorExecutionDetails.Builder,PredictorExecutionDetails>,SdkPojo
- Enclosing class:
- PredictorExecutionDetails
public static interface PredictorExecutionDetails.Builder extends SdkPojo, CopyableBuilder<PredictorExecutionDetails.Builder,PredictorExecutionDetails>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PredictorExecutionDetails.BuilderpredictorExecutions(Collection<PredictorExecution> predictorExecutions)An array of the backtests performed to evaluate the accuracy of the predictor against a particular algorithm.PredictorExecutionDetails.BuilderpredictorExecutions(Consumer<PredictorExecution.Builder>... predictorExecutions)An array of the backtests performed to evaluate the accuracy of the predictor against a particular algorithm.PredictorExecutionDetails.BuilderpredictorExecutions(PredictorExecution... predictorExecutions)An array of the backtests performed to evaluate the accuracy of the predictor against a particular algorithm.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
predictorExecutions
PredictorExecutionDetails.Builder predictorExecutions(Collection<PredictorExecution> predictorExecutions)
An array of the backtests performed to evaluate the accuracy of the predictor against a particular algorithm. The
NumberOfBacktestWindowsfrom the object determines the number of windows in the array.- Parameters:
predictorExecutions- An array of the backtests performed to evaluate the accuracy of the predictor against a particular algorithm. TheNumberOfBacktestWindowsfrom the object determines the number of windows in the array.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
predictorExecutions
PredictorExecutionDetails.Builder predictorExecutions(PredictorExecution... predictorExecutions)
An array of the backtests performed to evaluate the accuracy of the predictor against a particular algorithm. The
NumberOfBacktestWindowsfrom the object determines the number of windows in the array.- Parameters:
predictorExecutions- An array of the backtests performed to evaluate the accuracy of the predictor against a particular algorithm. TheNumberOfBacktestWindowsfrom the object determines the number of windows in the array.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
predictorExecutions
PredictorExecutionDetails.Builder predictorExecutions(Consumer<PredictorExecution.Builder>... predictorExecutions)
An array of the backtests performed to evaluate the accuracy of the predictor against a particular algorithm. The
This is a convenience method that creates an instance of theNumberOfBacktestWindowsfrom the object determines the number of windows in the array.PredictorExecution.Builderavoiding the need to create one manually viaPredictorExecution.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#predictorExecutions(List.) - Parameters:
predictorExecutions- a consumer that will call methods onPredictorExecution.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#predictorExecutions(java.util.Collection)
-
-