Interface ResourceLimits.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<ResourceLimits.Builder,ResourceLimits>
,SdkBuilder<ResourceLimits.Builder,ResourceLimits>
,SdkPojo
- Enclosing class:
- ResourceLimits
public static interface ResourceLimits.Builder extends SdkPojo, CopyableBuilder<ResourceLimits.Builder,ResourceLimits>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ResourceLimits.Builder
maxNumberOfTrainingJobs(Integer maxNumberOfTrainingJobs)
The maximum number of training jobs that a hyperparameter tuning job can launch.ResourceLimits.Builder
maxParallelTrainingJobs(Integer maxParallelTrainingJobs)
The maximum number of concurrent training jobs that a hyperparameter tuning job can launch.ResourceLimits.Builder
maxRuntimeInSeconds(Integer maxRuntimeInSeconds)
The maximum time in seconds that a hyperparameter tuning job can run.-
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
-
maxNumberOfTrainingJobs
ResourceLimits.Builder maxNumberOfTrainingJobs(Integer maxNumberOfTrainingJobs)
The maximum number of training jobs that a hyperparameter tuning job can launch.
- Parameters:
maxNumberOfTrainingJobs
- The maximum number of training jobs that a hyperparameter tuning job can launch.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
maxParallelTrainingJobs
ResourceLimits.Builder maxParallelTrainingJobs(Integer maxParallelTrainingJobs)
The maximum number of concurrent training jobs that a hyperparameter tuning job can launch.
- Parameters:
maxParallelTrainingJobs
- The maximum number of concurrent training jobs that a hyperparameter tuning job can launch.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
maxRuntimeInSeconds
ResourceLimits.Builder maxRuntimeInSeconds(Integer maxRuntimeInSeconds)
The maximum time in seconds that a hyperparameter tuning job can run.
- Parameters:
maxRuntimeInSeconds
- The maximum time in seconds that a hyperparameter tuning job can run.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-