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

UpdateRecipeRequest

import type { UpdateRecipeRequest } from "https://aws-api.deno.dev/v0.4/services/databrew.ts?docs=full";
interface UpdateRecipeRequest {
Description?: string | null;
Name: string;
Steps?: RecipeStep[] | null;
}

§Properties

§
Description?: string | null
[src]

A description of the recipe.

§
Name: string
[src]

The name of the recipe to be updated.

§
Steps?: RecipeStep[] | null
[src]

One or more steps to be performed by the recipe. Each step consists of an action, and the conditions under which the action should succeed.