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

Recipe

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

Provides information about a recipe. Each recipe provides an algorithm that Amazon Personalize uses in model training when you use the "CreateSolution" operation.

interface Recipe {
algorithmArn?: string | null;
creationDateTime?: Date | number | null;
description?: string | null;
featureTransformationArn?: string | null;
lastUpdatedDateTime?: Date | number | null;
name?: string | null;
recipeArn?: string | null;
recipeType?: string | null;
status?: string | null;
}

§Properties

§
algorithmArn?: string | null
[src]

The Amazon Resource Name (ARN) of the algorithm that Amazon Personalize uses to train the model.

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

The date and time (in Unix format) that the recipe was created.

§
description?: string | null
[src]

The description of the recipe.

§
featureTransformationArn?: string | null
[src]

The ARN of the FeatureTransformation object.

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

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

§
name?: string | null
[src]

The name of the recipe.

§
recipeArn?: string | null
[src]

The Amazon Resource Name (ARN) of the recipe.

§
recipeType?: string | null
[src]

One of the following values:

  • PERSONALIZED_RANKING
  • RELATED_ITEMS
  • USER_PERSONALIZATION
§
status?: string | null
[src]

The status of the recipe.