Skip to content

Dataset

Source: src/AWS/Personalize/Dataset.ts

An Amazon Personalize dataset — a typed collection (Interactions, Items, Users, …) inside a dataset group, backed by a schema. Creating the dataset is a cheap metadata operation; bulk imports and training happen through separate import jobs and solutions.

const dataset = yield* Personalize.Dataset("Interactions", {
schemaArn: schema.schemaArn,
datasetGroupArn: group.datasetGroupArn,
datasetType: "Interactions",
});