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