interface AutoMLConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Personalize.CfnSolution.AutoMLConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awspersonalize#CfnSolution_AutoMLConfigProperty |
Java | software.amazon.awscdk.services.personalize.CfnSolution.AutoMLConfigProperty |
Python | aws_cdk.aws_personalize.CfnSolution.AutoMLConfigProperty |
TypeScript | aws-cdk-lib » aws_personalize » CfnSolution » AutoMLConfigProperty |
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 { aws_personalize as personalize } from 'aws-cdk-lib';
const autoMLConfigProperty: personalize.CfnSolution.AutoMLConfigProperty = {
metricName: 'metricName',
recipeList: ['recipeList'],
};
Properties
| Name | Type | Description |
|---|---|---|
| metric | string | The metric to optimize. |
| recipe | string[] | The list of candidate recipes. |
metricName?
Type:
string
(optional)
The metric to optimize.
recipeList?
Type:
string[]
(optional)
The list of candidate recipes.

.NET
Go
Java
Python
TypeScript