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

WorkflowExecutionCount

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

Contains the count of workflow executions returned from "CountOpenWorkflowExecutions" or "CountClosedWorkflowExecutions"

interface WorkflowExecutionCount {
count: number;
truncated?: boolean | null;
}

§Properties

§
count: number
[src]

The number of workflow executions.

§
truncated?: boolean | null
[src]

If set to true, indicates that the actual count was more than the maximum supported by this API and the count returned is the truncated value.