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

CreateWorkflowRequest

import type { CreateWorkflowRequest } from "https://aws-api.deno.dev/v0.3/services/glue.ts?docs=full";
interface CreateWorkflowRequest {
DefaultRunProperties?: {
[key: string]: string | null | undefined;
}
| null;
Description?: string | null;
MaxConcurrentRuns?: number | null;
Name: string;
Tags?: {
[key: string]: string | null | undefined;
}
| null;
}

§Properties

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

A collection of properties to be used as part of each execution of the workflow.

§
Description?: string | null
[src]

A description of the workflow.

§
MaxConcurrentRuns?: number | null
[src]

You can use this parameter to prevent unwanted multiple updates to data, to control costs, or in some cases, to prevent exceeding the maximum number of concurrent runs of any of the component jobs. If you leave this parameter blank, there is no limit to the number of concurrent workflow runs.

§
Name: string
[src]

The name to be assigned to the workflow. It should be unique within your account.

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

The tags to be used with this workflow.