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

CountOpenWorkflowExecutionsInput

import type { CountOpenWorkflowExecutionsInput } from "https://aws-api.deno.dev/v0.3/services/swf.ts?docs=full";
interface CountOpenWorkflowExecutionsInput {
domain: string;
executionFilter?: WorkflowExecutionFilter | null;
startTimeFilter: ExecutionTimeFilter;
tagFilter?: TagFilter | null;
typeFilter?: WorkflowTypeFilter | null;
}

§Properties

§
domain: string
[src]

The name of the domain containing the workflow executions to count.

§
executionFilter?: WorkflowExecutionFilter | null
[src]

If specified, only workflow executions matching the WorkflowId in the filter are counted.

Note: executionFilter, typeFilter and tagFilter are mutually exclusive. You can specify at most one of these in a request.

§
startTimeFilter: ExecutionTimeFilter
[src]

Specifies the start time criteria that workflow executions must meet in order to be counted.

§
tagFilter?: TagFilter | null
[src]

If specified, only executions that have a tag that matches the filter are counted.

Note: executionFilter, typeFilter and tagFilter are mutually exclusive. You can specify at most one of these in a request.

§
typeFilter?: WorkflowTypeFilter | null
[src]

Specifies the type of the workflow executions to be counted.

Note: executionFilter, typeFilter and tagFilter are mutually exclusive. You can specify at most one of these in a request.