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

Recommender

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

Describes a recommendation generator for a Domain dataset group. You create a recommender in a Domain dataset group for a specific domain use case (domain recipe), and specify the recommender in a GetRecommendations request.

interface Recommender {
creationDateTime?: Date | number | null;
datasetGroupArn?: string | null;
failureReason?: string | null;
lastUpdatedDateTime?: Date | number | null;
latestRecommenderUpdate?: RecommenderUpdateSummary | null;
name?: string | null;
recipeArn?: string | null;
recommenderArn?: string | null;
recommenderConfig?: RecommenderConfig | null;
status?: string | null;
}

§Properties

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

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

§
datasetGroupArn?: string | null
[src]

The Amazon Resource Name (ARN) of the Domain dataset group that contains the recommender.

§
failureReason?: string | null
[src]

If a recommender fails, the reason behind the failure.

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

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

§
latestRecommenderUpdate?: RecommenderUpdateSummary | null
[src]

Provides a summary of the latest updates to the recommender.

§
name?: string | null
[src]

The name of the recommender.

§
recipeArn?: string | null
[src]

The Amazon Resource Name (ARN) of the recipe (Domain dataset group use case) that the recommender was created for.

§
recommenderArn?: string | null
[src]

The Amazon Resource Name (ARN) of the recommender.

§
recommenderConfig?: RecommenderConfig | null
[src]

The configuration details of the recommender.

§
status?: string | null
[src]

The status of the recommender.

A recommender can be in one of the following states:

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