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

CountClosedWorkflowExecutionsInput

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

§Properties

§
closeStatusFilter?: CloseStatusFilter | null
[src]

If specified, only workflow executions that match this close status are counted. This filter has an affect only if executionStatus is specified as CLOSED.

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

§
closeTimeFilter?: ExecutionTimeFilter | null
[src]

If specified, only workflow executions that meet the close time criteria of the filter are counted.

Note: startTimeFilter and closeTimeFilter are mutually exclusive. You must specify one of these in a request but not both.

§
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: closeStatusFilter, executionFilter, typeFilter and tagFilter are mutually exclusive. You can specify at most one of these in a request.

§
startTimeFilter?: ExecutionTimeFilter | null
[src]

If specified, only workflow executions that meet the start time criteria of the filter are counted.

Note: startTimeFilter and closeTimeFilter are mutually exclusive. You must specify one of these in a request but not both.

§
tagFilter?: TagFilter | null
[src]

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

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

§
typeFilter?: WorkflowTypeFilter | null
[src]

If specified, indicates the type of the workflow executions to be counted.

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