Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

AutoMLConfig

import type { AutoMLConfig } from "https://aws-api.deno.dev/v0.3/services/personalize.ts?docs=full";

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.

interface AutoMLConfig {
metricName?: string | null;
recipeList?: string[] | null;
}

§Properties

§
metricName?: string | null
[src]

The metric to optimize.

§
recipeList?: string[] | null
[src]

The list of candidate recipes.