Interface ParameterRanges.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ParameterRanges.Builder,ParameterRanges>,SdkBuilder<ParameterRanges.Builder,ParameterRanges>,SdkPojo
- Enclosing class:
- ParameterRanges
public static interface ParameterRanges.Builder extends SdkPojo, CopyableBuilder<ParameterRanges.Builder,ParameterRanges>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ParameterRanges.BuildercategoricalParameterRanges(Collection<CategoricalParameterRange> categoricalParameterRanges)Specifies the tunable range for each categorical hyperparameter.ParameterRanges.BuildercategoricalParameterRanges(Consumer<CategoricalParameterRange.Builder>... categoricalParameterRanges)Specifies the tunable range for each categorical hyperparameter.ParameterRanges.BuildercategoricalParameterRanges(CategoricalParameterRange... categoricalParameterRanges)Specifies the tunable range for each categorical hyperparameter.ParameterRanges.BuildercontinuousParameterRanges(Collection<ContinuousParameterRange> continuousParameterRanges)Specifies the tunable range for each continuous hyperparameter.ParameterRanges.BuildercontinuousParameterRanges(Consumer<ContinuousParameterRange.Builder>... continuousParameterRanges)Specifies the tunable range for each continuous hyperparameter.ParameterRanges.BuildercontinuousParameterRanges(ContinuousParameterRange... continuousParameterRanges)Specifies the tunable range for each continuous hyperparameter.ParameterRanges.BuilderintegerParameterRanges(Collection<IntegerParameterRange> integerParameterRanges)Specifies the tunable range for each integer hyperparameter.ParameterRanges.BuilderintegerParameterRanges(Consumer<IntegerParameterRange.Builder>... integerParameterRanges)Specifies the tunable range for each integer hyperparameter.ParameterRanges.BuilderintegerParameterRanges(IntegerParameterRange... integerParameterRanges)Specifies the tunable range for each 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, sdkFields
-
-
-
-
Method Detail
-
categoricalParameterRanges
ParameterRanges.Builder categoricalParameterRanges(Collection<CategoricalParameterRange> categoricalParameterRanges)
Specifies the tunable range for each categorical hyperparameter.
- Parameters:
categoricalParameterRanges- Specifies the tunable range for each categorical hyperparameter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
categoricalParameterRanges
ParameterRanges.Builder categoricalParameterRanges(CategoricalParameterRange... categoricalParameterRanges)
Specifies the tunable range for each categorical hyperparameter.
- Parameters:
categoricalParameterRanges- Specifies the tunable range for each categorical hyperparameter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
categoricalParameterRanges
ParameterRanges.Builder categoricalParameterRanges(Consumer<CategoricalParameterRange.Builder>... categoricalParameterRanges)
Specifies the tunable range for each categorical hyperparameter.
This is a convenience method that creates an instance of theCategoricalParameterRange.Builderavoiding the need to create one manually viaCategoricalParameterRange.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#categoricalParameterRanges(List.) - Parameters:
categoricalParameterRanges- a consumer that will call methods onCategoricalParameterRange.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#categoricalParameterRanges(java.util.Collection)
-
continuousParameterRanges
ParameterRanges.Builder continuousParameterRanges(Collection<ContinuousParameterRange> continuousParameterRanges)
Specifies the tunable range for each continuous hyperparameter.
- Parameters:
continuousParameterRanges- Specifies the tunable range for each continuous hyperparameter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
continuousParameterRanges
ParameterRanges.Builder continuousParameterRanges(ContinuousParameterRange... continuousParameterRanges)
Specifies the tunable range for each continuous hyperparameter.
- Parameters:
continuousParameterRanges- Specifies the tunable range for each continuous hyperparameter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
continuousParameterRanges
ParameterRanges.Builder continuousParameterRanges(Consumer<ContinuousParameterRange.Builder>... continuousParameterRanges)
Specifies the tunable range for each continuous hyperparameter.
This is a convenience method that creates an instance of theContinuousParameterRange.Builderavoiding the need to create one manually viaContinuousParameterRange.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#continuousParameterRanges(List.) - Parameters:
continuousParameterRanges- a consumer that will call methods onContinuousParameterRange.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#continuousParameterRanges(java.util.Collection)
-
integerParameterRanges
ParameterRanges.Builder integerParameterRanges(Collection<IntegerParameterRange> integerParameterRanges)
Specifies the tunable range for each integer hyperparameter.
- Parameters:
integerParameterRanges- Specifies the tunable range for each integer hyperparameter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
integerParameterRanges
ParameterRanges.Builder integerParameterRanges(IntegerParameterRange... integerParameterRanges)
Specifies the tunable range for each integer hyperparameter.
- Parameters:
integerParameterRanges- Specifies the tunable range for each integer hyperparameter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
integerParameterRanges
ParameterRanges.Builder integerParameterRanges(Consumer<IntegerParameterRange.Builder>... integerParameterRanges)
Specifies the tunable range for each integer hyperparameter.
This is a convenience method that creates an instance of theIntegerParameterRange.Builderavoiding the need to create one manually viaIntegerParameterRange.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#integerParameterRanges(List.) - Parameters:
integerParameterRanges- a consumer that will call methods onIntegerParameterRange.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#integerParameterRanges(java.util.Collection)
-
-