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

Solution

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

An object that provides information about a solution. A solution is a trained model that can be deployed as a campaign.

interface Solution {
autoMLResult?: AutoMLResult | null;
creationDateTime?: Date | number | null;
datasetGroupArn?: string | null;
eventType?: string | null;
lastUpdatedDateTime?: Date | number | null;
latestSolutionVersion?: SolutionVersionSummary | null;
name?: string | null;
performAutoML?: boolean | null;
performHPO?: boolean | null;
recipeArn?: string | null;
solutionArn?: string | null;
solutionConfig?: SolutionConfig | null;
status?: string | null;
}

§Properties

§
autoMLResult?: AutoMLResult | null
[src]

When performAutoML is true, specifies the best recipe found.

§
creationDateTime?: Date | number | null
[src]

The creation date and time (in Unix time) of the solution.

§
datasetGroupArn?: string | null
[src]

The Amazon Resource Name (ARN) of the dataset group that provides the training data.

§
eventType?: string | null
[src]

The event type (for example, 'click' or 'like') that is used for training the model. If no eventType is provided, Amazon Personalize uses all interactions for training with equal weight regardless of type.

§
lastUpdatedDateTime?: Date | number | null
[src]

The date and time (in Unix time) that the solution was last updated.

§
latestSolutionVersion?: SolutionVersionSummary | null
[src]

Describes the latest version of the solution, including the status and the ARN.

§
name?: string | null
[src]

The name of the solution.

§
performAutoML?: boolean | null
[src]

When true, Amazon Personalize performs a search for the best USER_PERSONALIZATION recipe from the list specified in the solution configuration (recipeArn must not be specified). When false (the default), Amazon Personalize uses recipeArn for training.

§
performHPO?: boolean | null
[src]

Whether to perform hyperparameter optimization (HPO) on the chosen recipe. The default is false.

§
recipeArn?: string | null
[src]

The ARN of the recipe used to create the solution.

§
solutionArn?: string | null
[src]

The ARN of the solution.

§
solutionConfig?: SolutionConfig | null
[src]

Describes the configuration properties for the solution.

§
status?: string | null
[src]

The status of the solution.

A solution can be in one of the following states:

  • CREATE PENDING > CREATE IN_PROGRESS > ACTIVE -or- CREATE FAILED
  • DELETE PENDING > DELETE IN_PROGRESS