Interface IntegerHyperParameterRange.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<IntegerHyperParameterRange.Builder,IntegerHyperParameterRange>,SdkBuilder<IntegerHyperParameterRange.Builder,IntegerHyperParameterRange>,SdkPojo
- Enclosing class:
- IntegerHyperParameterRange
public static interface IntegerHyperParameterRange.Builder extends SdkPojo, CopyableBuilder<IntegerHyperParameterRange.Builder,IntegerHyperParameterRange>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IntegerHyperParameterRange.BuildermaxValue(Integer maxValue)The maximum allowable value for the hyperparameter.IntegerHyperParameterRange.BuilderminValue(Integer minValue)The minimum allowable value for the hyperparameter.IntegerHyperParameterRange.Buildername(String name)The name of the hyperparameter.-
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
-
name
IntegerHyperParameterRange.Builder name(String name)
The name of the hyperparameter.
- Parameters:
name- The name of the hyperparameter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
minValue
IntegerHyperParameterRange.Builder minValue(Integer minValue)
The minimum allowable value for the hyperparameter.
- Parameters:
minValue- The minimum allowable value for the hyperparameter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
maxValue
IntegerHyperParameterRange.Builder maxValue(Integer maxValue)
The maximum allowable value for the hyperparameter.
- Parameters:
maxValue- The maximum allowable value for the hyperparameter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-