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

Recipe

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

Represents one or more actions to be performed on a DataBrew dataset.

interface Recipe {
CreateDate?: Date | number | null;
CreatedBy?: string | null;
Description?: string | null;
LastModifiedBy?: string | null;
LastModifiedDate?: Date | number | null;
Name: string;
ProjectName?: string | null;
PublishedBy?: string | null;
PublishedDate?: Date | number | null;
RecipeVersion?: string | null;
ResourceArn?: string | null;
Steps?: RecipeStep[] | null;
Tags?: {
[key: string]: string | null | undefined;
}
| null;
}

§Properties

§
CreateDate?: Date | number | null
[src]

The date and time that the recipe was created.

§
CreatedBy?: string | null
[src]

The Amazon Resource Name (ARN) of the user who created the recipe.

§
Description?: string | null
[src]

The description of the recipe.

§
LastModifiedBy?: string | null
[src]

The Amazon Resource Name (ARN) of the user who last modified the recipe.

§
LastModifiedDate?: Date | number | null
[src]

The last modification date and time of the recipe.

§
Name: string
[src]

The unique name for the recipe.

§
ProjectName?: string | null
[src]

The name of the project that the recipe is associated with.

§
PublishedBy?: string | null
[src]

The Amazon Resource Name (ARN) of the user who published the recipe.

§
PublishedDate?: Date | number | null
[src]

The date and time when the recipe was published.

§
RecipeVersion?: string | null
[src]

The identifier for the version for the recipe. Must be one of the following:

  • Numeric version (X.Y) - X and Y stand for major and minor version numbers. The maximum length of each is 6 digits, and neither can be negative values. Both X and Y are required, and "0.0" isn't a valid version.
  • LATEST_WORKING - the most recent valid version being developed in a DataBrew project.
  • LATEST_PUBLISHED - the most recent published version.
§
ResourceArn?: string | null
[src]

The Amazon Resource Name (ARN) for the recipe.

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

A list of steps that are defined by the recipe.

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

Metadata tags that have been applied to the recipe.