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

RecipeStep

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

Represents a single step from a DataBrew recipe to be performed.

interface RecipeStep {
Action: RecipeAction;
ConditionExpressions?: ConditionExpression[] | null;
}

§Properties

§

The particular action to be performed in the recipe step.

§
ConditionExpressions?: ConditionExpression[] | null
[src]

One or more conditions that must be met for the recipe step to succeed.

Note: All of the conditions in the array must be met. In other words, all of the conditions must be combined using a logical AND operation.