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