Interface CfnSolution.AutoMLConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSolution.AutoMLConfigProperty.Jsii$Proxy
- Enclosing class:
CfnSolution
@Stability(Stable)
public static interface CfnSolution.AutoMLConfigProperty
extends software.amazon.jsii.JsiiSerializable
When the solution performs AutoML (
performAutoML
is true in CreateSolution ), Amazon Personalize determines which recipe, from the specified list, optimizes the given metric. Amazon Personalize then uses that recipe 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.*; AutoMLConfigProperty autoMLConfigProperty = AutoMLConfigProperty.builder() .metricName("metricName") .recipeList(List.of("recipeList")) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnSolution.AutoMLConfigProperty
static final class
An implementation forCfnSolution.AutoMLConfigProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMetricName
The metric to optimize.- See Also:
-
getRecipeList
The list of candidate recipes.- See Also:
-
builder
-