Interface ParameterRange.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<ParameterRange.Builder,ParameterRange>
,SdkBuilder<ParameterRange.Builder,ParameterRange>
,SdkPojo
- Enclosing class:
- ParameterRange
public static interface ParameterRange.Builder extends SdkPojo, CopyableBuilder<ParameterRange.Builder,ParameterRange>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default ParameterRange.Builder
categoricalParameterRangeSpecification(Consumer<CategoricalParameterRangeSpecification.Builder> categoricalParameterRangeSpecification)
ACategoricalParameterRangeSpecification
object that defines the possible values for a categorical hyperparameter.ParameterRange.Builder
categoricalParameterRangeSpecification(CategoricalParameterRangeSpecification categoricalParameterRangeSpecification)
ACategoricalParameterRangeSpecification
object that defines the possible values for a categorical hyperparameter.default ParameterRange.Builder
continuousParameterRangeSpecification(Consumer<ContinuousParameterRangeSpecification.Builder> continuousParameterRangeSpecification)
AContinuousParameterRangeSpecification
object that defines the possible values for a continuous hyperparameter.ParameterRange.Builder
continuousParameterRangeSpecification(ContinuousParameterRangeSpecification continuousParameterRangeSpecification)
AContinuousParameterRangeSpecification
object that defines the possible values for a continuous hyperparameter.default ParameterRange.Builder
integerParameterRangeSpecification(Consumer<IntegerParameterRangeSpecification.Builder> integerParameterRangeSpecification)
AIntegerParameterRangeSpecification
object that defines the possible values for an integer hyperparameter.ParameterRange.Builder
integerParameterRangeSpecification(IntegerParameterRangeSpecification integerParameterRangeSpecification)
AIntegerParameterRangeSpecification
object that defines the possible values for an integer 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
-
integerParameterRangeSpecification
ParameterRange.Builder integerParameterRangeSpecification(IntegerParameterRangeSpecification integerParameterRangeSpecification)
A
IntegerParameterRangeSpecification
object that defines the possible values for an integer hyperparameter.- Parameters:
integerParameterRangeSpecification
- AIntegerParameterRangeSpecification
object that defines the possible values for an integer hyperparameter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
integerParameterRangeSpecification
default ParameterRange.Builder integerParameterRangeSpecification(Consumer<IntegerParameterRangeSpecification.Builder> integerParameterRangeSpecification)
A
This is a convenience method that creates an instance of theIntegerParameterRangeSpecification
object that defines the possible values for an integer hyperparameter.IntegerParameterRangeSpecification.Builder
avoiding the need to create one manually viaIntegerParameterRangeSpecification.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tointegerParameterRangeSpecification(IntegerParameterRangeSpecification)
.- Parameters:
integerParameterRangeSpecification
- a consumer that will call methods onIntegerParameterRangeSpecification.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
integerParameterRangeSpecification(IntegerParameterRangeSpecification)
-
continuousParameterRangeSpecification
ParameterRange.Builder continuousParameterRangeSpecification(ContinuousParameterRangeSpecification continuousParameterRangeSpecification)
A
ContinuousParameterRangeSpecification
object that defines the possible values for a continuous hyperparameter.- Parameters:
continuousParameterRangeSpecification
- AContinuousParameterRangeSpecification
object that defines the possible values for a continuous hyperparameter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
continuousParameterRangeSpecification
default ParameterRange.Builder continuousParameterRangeSpecification(Consumer<ContinuousParameterRangeSpecification.Builder> continuousParameterRangeSpecification)
A
This is a convenience method that creates an instance of theContinuousParameterRangeSpecification
object that defines the possible values for a continuous hyperparameter.ContinuousParameterRangeSpecification.Builder
avoiding the need to create one manually viaContinuousParameterRangeSpecification.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tocontinuousParameterRangeSpecification(ContinuousParameterRangeSpecification)
.- Parameters:
continuousParameterRangeSpecification
- a consumer that will call methods onContinuousParameterRangeSpecification.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
continuousParameterRangeSpecification(ContinuousParameterRangeSpecification)
-
categoricalParameterRangeSpecification
ParameterRange.Builder categoricalParameterRangeSpecification(CategoricalParameterRangeSpecification categoricalParameterRangeSpecification)
A
CategoricalParameterRangeSpecification
object that defines the possible values for a categorical hyperparameter.- Parameters:
categoricalParameterRangeSpecification
- ACategoricalParameterRangeSpecification
object that defines the possible values for a categorical hyperparameter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
categoricalParameterRangeSpecification
default ParameterRange.Builder categoricalParameterRangeSpecification(Consumer<CategoricalParameterRangeSpecification.Builder> categoricalParameterRangeSpecification)
A
This is a convenience method that creates an instance of theCategoricalParameterRangeSpecification
object that defines the possible values for a categorical hyperparameter.CategoricalParameterRangeSpecification.Builder
avoiding the need to create one manually viaCategoricalParameterRangeSpecification.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tocategoricalParameterRangeSpecification(CategoricalParameterRangeSpecification)
.- Parameters:
categoricalParameterRangeSpecification
- a consumer that will call methods onCategoricalParameterRangeSpecification.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
categoricalParameterRangeSpecification(CategoricalParameterRangeSpecification)
-
-