Interface DefaultCategoricalHyperParameterRange.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DefaultCategoricalHyperParameterRange.Builder,DefaultCategoricalHyperParameterRange>,SdkBuilder<DefaultCategoricalHyperParameterRange.Builder,DefaultCategoricalHyperParameterRange>,SdkPojo
- Enclosing class:
- DefaultCategoricalHyperParameterRange
public static interface DefaultCategoricalHyperParameterRange.Builder extends SdkPojo, CopyableBuilder<DefaultCategoricalHyperParameterRange.Builder,DefaultCategoricalHyperParameterRange>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DefaultCategoricalHyperParameterRange.BuilderisTunable(Boolean isTunable)Whether the hyperparameter is tunable.DefaultCategoricalHyperParameterRange.Buildername(String name)The name of the hyperparameter.DefaultCategoricalHyperParameterRange.Buildervalues(String... values)A list of the categories for the hyperparameter.DefaultCategoricalHyperParameterRange.Buildervalues(Collection<String> values)A list of the categories for 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
DefaultCategoricalHyperParameterRange.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.
-
values
DefaultCategoricalHyperParameterRange.Builder values(Collection<String> values)
A list of the categories for the hyperparameter.
- Parameters:
values- A list of the categories for the hyperparameter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
values
DefaultCategoricalHyperParameterRange.Builder values(String... values)
A list of the categories for the hyperparameter.
- Parameters:
values- A list of the categories for the hyperparameter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
isTunable
DefaultCategoricalHyperParameterRange.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.
-
-