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

CreateSolutionVersionRequest

import type { CreateSolutionVersionRequest } from "https://aws-api.deno.dev/v0.3/services/personalize.ts?docs=full";
interface CreateSolutionVersionRequest {
solutionArn: string;
trainingMode?: TrainingMode | null;
}

§Properties

§
solutionArn: string
[src]

The Amazon Resource Name (ARN) of the solution containing the training configuration information.

§
trainingMode?: TrainingMode | null
[src]

The scope of training to be performed when creating the solution version. The FULL option trains the solution version based on the entirety of the input solution's training data, while the UPDATE option processes only the data that has changed in comparison to the input solution. Choose UPDATE when you want to incrementally update your solution version instead of creating an entirely new one.

! IMPORTANT: ! The UPDATE option can only be used when you already have an active solution version created from the input solution using the FULL option and the input solution was trained with the User-Personalization recipe or the HRNN-Coldstart recipe.