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: