@Stability(value=Stable)
public static interface CfnSolution.AlgorithmHyperParameterRangesProperty
extends software.amazon.jsii.JsiiSerializable
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.personalize.*;
AlgorithmHyperParameterRangesProperty algorithmHyperParameterRangesProperty = AlgorithmHyperParameterRangesProperty.builder()
.categoricalHyperParameterRanges(List.of(CategoricalHyperParameterRangeProperty.builder()
.name("name")
.values(List.of("values"))
.build()))
.continuousHyperParameterRanges(List.of(ContinuousHyperParameterRangeProperty.builder()
.maxValue(123)
.minValue(123)
.name("name")
.build()))
.integerHyperParameterRanges(List.of(IntegerHyperParameterRangeProperty.builder()
.maxValue(123)
.minValue(123)
.name("name")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnSolution.AlgorithmHyperParameterRangesProperty.Builder
A builder for
CfnSolution.AlgorithmHyperParameterRangesProperty |
static class |
CfnSolution.AlgorithmHyperParameterRangesProperty.Jsii$Proxy
An implementation for
CfnSolution.AlgorithmHyperParameterRangesProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnSolution.AlgorithmHyperParameterRangesProperty.Builder |
builder() |
default Object |
getCategoricalHyperParameterRanges()
`CfnSolution.AlgorithmHyperParameterRangesProperty.CategoricalHyperParameterRanges`.
|
default Object |
getContinuousHyperParameterRanges()
`CfnSolution.AlgorithmHyperParameterRangesProperty.ContinuousHyperParameterRanges`.
|
default Object |
getIntegerHyperParameterRanges()
`CfnSolution.AlgorithmHyperParameterRangesProperty.IntegerHyperParameterRanges`.
|
@Stability(value=Stable) @Nullable default Object getCategoricalHyperParameterRanges()
@Stability(value=Stable) @Nullable default Object getContinuousHyperParameterRanges()
@Stability(value=Stable) @Nullable default Object getIntegerHyperParameterRanges()
@Stability(value=Stable) static CfnSolution.AlgorithmHyperParameterRangesProperty.Builder builder()
Copyright © 2023. All rights reserved.