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

RecipeAction

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

Represents a transformation and associated parameters that are used to apply a change to a DataBrew dataset. For more information, see Recipe actions reference.

interface RecipeAction {
Operation: string;
Parameters?: {
[key: string]: string | null | undefined;
}
| null;
}

§Properties

§
Operation: string
[src]

The name of a valid DataBrew transformation to be performed on the data.

§
Parameters?: {
[key: string]: string | null | undefined;
}
| null
[src]

Contextual parameters for the transformation.