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

CreateRecipeRequest

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

§Properties

§
Description?: string | null
[src]

A description for the recipe.

§
Name: string
[src]

A unique name for the recipe. Valid characters are alphanumeric (A-Z, a-z, 0-9), hyphen (-), period (.), and space.

§

An array containing the steps to be performed by the recipe. Each recipe step consists of one recipe action and (optionally) an array of condition expressions.

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

Metadata tags to apply to this recipe.