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

Workflow

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

A workflow is a collection of multiple dependent Glue jobs and crawlers that are run to complete a complex ETL task. A workflow manages the execution and monitoring of all its jobs and crawlers.

interface Workflow {
BlueprintDetails?: BlueprintDetails | null;
CreatedOn?: Date | number | null;
DefaultRunProperties?: {
[key: string]: string | null | undefined;
}
| null;
Description?: string | null;
Graph?: WorkflowGraph | null;
LastModifiedOn?: Date | number | null;
LastRun?: WorkflowRun | null;
MaxConcurrentRuns?: number | null;
Name?: string | null;
}

§Properties

§
BlueprintDetails?: BlueprintDetails | null
[src]

This structure indicates the details of the blueprint that this particular workflow is created from.

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

The date and time when the workflow was created.

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

A collection of properties to be used as part of each execution of the workflow. The run properties are made available to each job in the workflow. A job can modify the properties for the next jobs in the flow.

§
Description?: string | null
[src]

A description of the workflow.

§
Graph?: WorkflowGraph | null
[src]

The graph representing all the Glue components that belong to the workflow as nodes and directed connections between them as edges.

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

The date and time when the workflow was last modified.

§
LastRun?: WorkflowRun | null
[src]

The information about the last execution 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 | null
[src]

The name of the workflow.