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

WorkflowExecutionOpenCounts

import type { WorkflowExecutionOpenCounts } from "https://aws-api.deno.dev/v0.4/services/swf.ts?docs=full";

Contains the counts of open tasks, child workflow executions and timers for a workflow execution.

interface WorkflowExecutionOpenCounts {
openActivityTasks: number;
openChildWorkflowExecutions: number;
openDecisionTasks: number;
openLambdaFunctions?: number | null;
openTimers: number;
}

§Properties

§
openActivityTasks: number
[src]

The count of activity tasks whose status is OPEN.

§
openChildWorkflowExecutions: number
[src]

The count of child workflow executions whose status is OPEN.

§
openDecisionTasks: number
[src]

The count of decision tasks whose status is OPEN. A workflow execution can have at most one open decision task.

§
openLambdaFunctions?: number | null
[src]

The count of Lambda tasks whose status is OPEN.

§
openTimers: number
[src]

The count of timers started by this workflow execution that have not fired yet.