Skip to content

Project

Source: src/AWS/DataBrew/Project.ts

An AWS Glue DataBrew project — the interactive workspace binding a dataset to a recipe’s working version. The project definition is free; costs only accrue when an interactive session is started in the console.

Dataset + Recipe Project

import * as AWS from "alchemy/AWS";
const project = yield* AWS.DataBrew.Project("Explore", {
datasetName: dataset.datasetName,
recipeName: recipe.recipeName,
role: role.roleArn,
});

Custom Sample

const project = yield* AWS.DataBrew.Project("Explore", {
datasetName: dataset.datasetName,
recipeName: recipe.recipeName,
sample: { type: "RANDOM", size: 250 },
role: role.roleArn,
});