Interface CfnSolution.SolutionConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSolution.SolutionConfigProperty.Jsii$Proxy
- Enclosing class:
CfnSolution
@Stability(Stable)
public static interface CfnSolution.SolutionConfigProperty
extends software.amazon.jsii.JsiiSerializable
Describes the configuration properties for the solution.
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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnSolution.SolutionConfigPropertystatic final classAn implementation forCfnSolution.SolutionConfigProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectLists the algorithm hyperparameters and their values.default ObjectThe AutoMLConfig object containing a list of recipes to search when AutoML is performed.default StringOnly events with a value greater than or equal to this threshold are used for training a model.default ObjectLists the feature transformation parameters.default ObjectDescribes the properties for hyperparameter optimization (HPO).Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAlgorithmHyperParameters
Lists the algorithm hyperparameters and their values.Returns union: either Mapinvalid input: '<'String,
String> orIResolvable- See Also:
-
getAutoMlConfig
The AutoMLConfig object containing a list of recipes to search when AutoML is performed.- See Also:
-
getEventValueThreshold
Only events with a value greater than or equal to this threshold are used for training a model.- See Also:
-
getFeatureTransformationParameters
Lists the feature transformation parameters.Returns union: either Mapinvalid input: '<'String,
String> orIResolvable- See Also:
-
getHpoConfig
Describes the properties for hyperparameter optimization (HPO).- See Also:
-
builder
-