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

UpdateWorkflowRequest

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

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

The 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]

Name of the workflow to be updated.