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

WorkflowRun

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

A workflow run is an execution of a workflow providing all the runtime information.

interface WorkflowRun {
CompletedOn?: Date | number | null;
ErrorMessage?: string | null;
Graph?: WorkflowGraph | null;
Name?: string | null;
PreviousRunId?: string | null;
StartedOn?: Date | number | null;
StartingEventBatchCondition?: StartingEventBatchCondition | null;
Statistics?: WorkflowRunStatistics | null;
Status?: WorkflowRunStatus | null;
WorkflowRunId?: string | null;
WorkflowRunProperties?: {
[key: string]: string | null | undefined;
}
| null;
}

§Properties

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

The date and time when the workflow run completed.

§
ErrorMessage?: string | null
[src]

This error message describes any error that may have occurred in starting the workflow run. Currently the only error message is "Concurrent runs exceeded for workflow: foo."

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

§
Name?: string | null
[src]

Name of the workflow that was run.

§
PreviousRunId?: string | null
[src]

The ID of the previous workflow run.

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

The date and time when the workflow run was started.

§
StartingEventBatchCondition?: StartingEventBatchCondition | null
[src]

The batch condition that started the workflow run.

§
Statistics?: WorkflowRunStatistics | null
[src]

The statistics of the run.

§
Status?: WorkflowRunStatus | null
[src]

The status of the workflow run.

§
WorkflowRunId?: string | null
[src]

The ID of this workflow run.

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

The workflow run properties which were set during the run.