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

WorkflowRunStatistics

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

Workflow run statistics provides statistics about the workflow run.

interface WorkflowRunStatistics {
FailedActions?: number | null;
RunningActions?: number | null;
StoppedActions?: number | null;
SucceededActions?: number | null;
TimeoutActions?: number | null;
TotalActions?: number | null;
}

§Properties

§
FailedActions?: number | null
[src]

Total number of Actions that have failed.

§
RunningActions?: number | null
[src]

Total number Actions in running state.

§
StoppedActions?: number | null
[src]

Total number of Actions that have stopped.

§
SucceededActions?: number | null
[src]

Total number of Actions that have succeeded.

§
TimeoutActions?: number | null
[src]

Total number of Actions that timed out.

§
TotalActions?: number | null
[src]

Total number of Actions in the workflow run.