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

DescribeRecipeResponse

import type { DescribeRecipeResponse } from "https://aws-api.deno.dev/v0.4/services/databrew.ts?docs=full";
interface DescribeRecipeResponse {
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 identifier (user name) of the user who created the recipe.

§
Description?: string | null
[src]

The description of the recipe.

§
LastModifiedBy?: string | null
[src]

The identifier (user name) of the user who last modified the recipe.

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

The date and time that the recipe was last modified.

§
Name: string
[src]

The name of the recipe.

§
ProjectName?: string | null
[src]

The name of the project associated with this recipe.

§
PublishedBy?: string | null
[src]

The identifier (user name) of the user who last published the recipe.

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

The date and time when the recipe was last published.

§
RecipeVersion?: string | null
[src]

The recipe version identifier.

§
ResourceArn?: string | null
[src]

The ARN of the recipe.

§
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.

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

Metadata tags associated with this project.