@Stability(value=Stable)
public static interface CfnSolution.SolutionConfigProperty
extends software.amazon.jsii.JsiiSerializable
Example:
// 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.*;
Object autoMlConfig;
Object hpoConfig;
SolutionConfigProperty solutionConfigProperty = SolutionConfigProperty.builder()
.algorithmHyperParameters(Map.of(
"algorithmHyperParametersKey", "algorithmHyperParameters"))
.autoMlConfig(autoMlConfig)
.eventValueThreshold("eventValueThreshold")
.featureTransformationParameters(Map.of(
"featureTransformationParametersKey", "featureTransformationParameters"))
.hpoConfig(hpoConfig)
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnSolution.SolutionConfigProperty.Builder
A builder for
CfnSolution.SolutionConfigProperty |
static class |
CfnSolution.SolutionConfigProperty.Jsii$Proxy
An implementation for
CfnSolution.SolutionConfigProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnSolution.SolutionConfigProperty.Builder |
builder() |
default Object |
getAlgorithmHyperParameters()
Lists the hyperparameter names and ranges.
|
default Object |
getAutoMlConfig()
The [AutoMLConfig](https://docs.aws.amazon.com/personalize/latest/dg/API_AutoMLConfig.html) object containing a list of recipes to search when AutoML is performed.
|
default String |
getEventValueThreshold()
Only events with a value greater than or equal to this threshold are used for training a model.
|
default Object |
getFeatureTransformationParameters()
Lists the feature transformation parameters.
|
default Object |
getHpoConfig()
Describes the properties for hyperparameter optimization (HPO).
|
@Stability(value=Stable) @Nullable default Object getAlgorithmHyperParameters()
@Stability(value=Stable) @Nullable default Object getAutoMlConfig()
@Stability(value=Stable) @Nullable default String getEventValueThreshold()
@Stability(value=Stable) @Nullable default Object getFeatureTransformationParameters()
@Stability(value=Stable) @Nullable default Object getHpoConfig()
@Stability(value=Stable) static CfnSolution.SolutionConfigProperty.Builder builder()
Copyright © 2022. All rights reserved.