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

SWF

import { SWF } from "https://aws-api-gyr5wj9zj0fg.deno.dev/v0.2/services/swf.ts";
class SWF {
constructor(apiFactory: client.ApiFactory);
async countClosedWorkflowExecutions(params: CountClosedWorkflowExecutionsInput, opts?: client.RequestOptions): Promise<WorkflowExecutionCount>;
async countOpenWorkflowExecutions(params: CountOpenWorkflowExecutionsInput, opts?: client.RequestOptions): Promise<WorkflowExecutionCount>;
async countPendingActivityTasks(params: CountPendingActivityTasksInput, opts?: client.RequestOptions): Promise<PendingTaskCount>;
async countPendingDecisionTasks(params: CountPendingDecisionTasksInput, opts?: client.RequestOptions): Promise<PendingTaskCount>;
async deprecateActivityType(params: DeprecateActivityTypeInput, opts?: client.RequestOptions): Promise<void>;
async deprecateDomain(params: DeprecateDomainInput, opts?: client.RequestOptions): Promise<void>;
async deprecateWorkflowType(params: DeprecateWorkflowTypeInput, opts?: client.RequestOptions): Promise<void>;
async describeActivityType(params: DescribeActivityTypeInput, opts?: client.RequestOptions): Promise<ActivityTypeDetail>;
async describeDomain(params: DescribeDomainInput, opts?: client.RequestOptions): Promise<DomainDetail>;
async describeWorkflowExecution(params: DescribeWorkflowExecutionInput, opts?: client.RequestOptions): Promise<WorkflowExecutionDetail>;
async describeWorkflowType(params: DescribeWorkflowTypeInput, opts?: client.RequestOptions): Promise<WorkflowTypeDetail>;
async getWorkflowExecutionHistory(params: GetWorkflowExecutionHistoryInput, opts?: client.RequestOptions): Promise<History>;
async listActivityTypes(params: ListActivityTypesInput, opts?: client.RequestOptions): Promise<ActivityTypeInfos>;
async listClosedWorkflowExecutions(params: ListClosedWorkflowExecutionsInput, opts?: client.RequestOptions): Promise<WorkflowExecutionInfos>;
async listDomains(params: ListDomainsInput, opts?: client.RequestOptions): Promise<DomainInfos>;
async listOpenWorkflowExecutions(params: ListOpenWorkflowExecutionsInput, opts?: client.RequestOptions): Promise<WorkflowExecutionInfos>;
async listTagsForResource(params: ListTagsForResourceInput, opts?: client.RequestOptions): Promise<ListTagsForResourceOutput>;
async listWorkflowTypes(params: ListWorkflowTypesInput, opts?: client.RequestOptions): Promise<WorkflowTypeInfos>;
async pollForActivityTask(params: PollForActivityTaskInput, opts?: client.RequestOptions): Promise<ActivityTask>;
async pollForDecisionTask(params: PollForDecisionTaskInput, opts?: client.RequestOptions): Promise<DecisionTask>;
async recordActivityTaskHeartbeat(params: RecordActivityTaskHeartbeatInput, opts?: client.RequestOptions): Promise<ActivityTaskStatus>;
async registerActivityType(params: RegisterActivityTypeInput, opts?: client.RequestOptions): Promise<void>;
async registerDomain(params: RegisterDomainInput, opts?: client.RequestOptions): Promise<void>;
async registerWorkflowType(params: RegisterWorkflowTypeInput, opts?: client.RequestOptions): Promise<void>;
async requestCancelWorkflowExecution(params: RequestCancelWorkflowExecutionInput, opts?: client.RequestOptions): Promise<void>;
async respondActivityTaskCanceled(params: RespondActivityTaskCanceledInput, opts?: client.RequestOptions): Promise<void>;
async respondActivityTaskCompleted(params: RespondActivityTaskCompletedInput, opts?: client.RequestOptions): Promise<void>;
async respondActivityTaskFailed(params: RespondActivityTaskFailedInput, opts?: client.RequestOptions): Promise<void>;
async respondDecisionTaskCompleted(params: RespondDecisionTaskCompletedInput, opts?: client.RequestOptions): Promise<void>;
async signalWorkflowExecution(params: SignalWorkflowExecutionInput, opts?: client.RequestOptions): Promise<void>;
async startWorkflowExecution(params: StartWorkflowExecutionInput, opts?: client.RequestOptions): Promise<Run>;
async tagResource(params: TagResourceInput, opts?: client.RequestOptions): Promise<void>;
async terminateWorkflowExecution(params: TerminateWorkflowExecutionInput, opts?: client.RequestOptions): Promise<void>;
async undeprecateActivityType(params: UndeprecateActivityTypeInput, opts?: client.RequestOptions): Promise<void>;
async undeprecateDomain(params: UndeprecateDomainInput, opts?: client.RequestOptions): Promise<void>;
async undeprecateWorkflowType(params: UndeprecateWorkflowTypeInput, opts?: client.RequestOptions): Promise<void>;
async untagResource(params: UntagResourceInput, opts?: client.RequestOptions): Promise<void>;
 
static ApiMetadata: client.ApiMetadata;
}

§Constructors

§
new SWF(apiFactory: client.ApiFactory)
[src]

§Methods

§
countClosedWorkflowExecutions(params: CountClosedWorkflowExecutionsInput, opts?: client.RequestOptions): Promise<WorkflowExecutionCount>
[src]
§
countOpenWorkflowExecutions(params: CountOpenWorkflowExecutionsInput, opts?: client.RequestOptions): Promise<WorkflowExecutionCount>
[src]
§
countPendingActivityTasks(params: CountPendingActivityTasksInput, opts?: client.RequestOptions): Promise<PendingTaskCount>
[src]
§
countPendingDecisionTasks(params: CountPendingDecisionTasksInput, opts?: client.RequestOptions): Promise<PendingTaskCount>
[src]
§
deprecateActivityType(params: DeprecateActivityTypeInput, opts?: client.RequestOptions): Promise<void>
[src]
§
deprecateDomain(params: DeprecateDomainInput, opts?: client.RequestOptions): Promise<void>
[src]
§
deprecateWorkflowType(params: DeprecateWorkflowTypeInput, opts?: client.RequestOptions): Promise<void>
[src]
§
describeActivityType(params: DescribeActivityTypeInput, opts?: client.RequestOptions): Promise<ActivityTypeDetail>
[src]
§
describeDomain(params: DescribeDomainInput, opts?: client.RequestOptions): Promise<DomainDetail>
[src]
§
describeWorkflowExecution(params: DescribeWorkflowExecutionInput, opts?: client.RequestOptions): Promise<WorkflowExecutionDetail>
[src]
§
describeWorkflowType(params: DescribeWorkflowTypeInput, opts?: client.RequestOptions): Promise<WorkflowTypeDetail>
[src]
§
getWorkflowExecutionHistory(params: GetWorkflowExecutionHistoryInput, opts?: client.RequestOptions): Promise<History>
[src]
§
listActivityTypes(params: ListActivityTypesInput, opts?: client.RequestOptions): Promise<ActivityTypeInfos>
[src]
§
listClosedWorkflowExecutions(params: ListClosedWorkflowExecutionsInput, opts?: client.RequestOptions): Promise<WorkflowExecutionInfos>
[src]
§
listDomains(params: ListDomainsInput, opts?: client.RequestOptions): Promise<DomainInfos>
[src]
§
listOpenWorkflowExecutions(params: ListOpenWorkflowExecutionsInput, opts?: client.RequestOptions): Promise<WorkflowExecutionInfos>
[src]
§
listWorkflowTypes(params: ListWorkflowTypesInput, opts?: client.RequestOptions): Promise<WorkflowTypeInfos>
[src]
§
pollForActivityTask(params: PollForActivityTaskInput, opts?: client.RequestOptions): Promise<ActivityTask>
[src]
§
pollForDecisionTask(params: PollForDecisionTaskInput, opts?: client.RequestOptions): Promise<DecisionTask>
[src]
§
recordActivityTaskHeartbeat(params: RecordActivityTaskHeartbeatInput, opts?: client.RequestOptions): Promise<ActivityTaskStatus>
[src]
§
registerActivityType(params: RegisterActivityTypeInput, opts?: client.RequestOptions): Promise<void>
[src]
§
registerDomain(params: RegisterDomainInput, opts?: client.RequestOptions): Promise<void>
[src]
§
registerWorkflowType(params: RegisterWorkflowTypeInput, opts?: client.RequestOptions): Promise<void>
[src]
§
requestCancelWorkflowExecution(params: RequestCancelWorkflowExecutionInput, opts?: client.RequestOptions): Promise<void>
[src]
§
respondActivityTaskCanceled(params: RespondActivityTaskCanceledInput, opts?: client.RequestOptions): Promise<void>
[src]
§
respondActivityTaskCompleted(params: RespondActivityTaskCompletedInput, opts?: client.RequestOptions): Promise<void>
[src]
§
respondActivityTaskFailed(params: RespondActivityTaskFailedInput, opts?: client.RequestOptions): Promise<void>
[src]
§
respondDecisionTaskCompleted(params: RespondDecisionTaskCompletedInput, opts?: client.RequestOptions): Promise<void>
[src]
§
signalWorkflowExecution(params: SignalWorkflowExecutionInput, opts?: client.RequestOptions): Promise<void>
[src]
§
startWorkflowExecution(params: StartWorkflowExecutionInput, opts?: client.RequestOptions): Promise<Run>
[src]
§
tagResource(params: TagResourceInput, opts?: client.RequestOptions): Promise<void>
[src]
§
terminateWorkflowExecution(params: TerminateWorkflowExecutionInput, opts?: client.RequestOptions): Promise<void>
[src]
§
undeprecateActivityType(params: UndeprecateActivityTypeInput, opts?: client.RequestOptions): Promise<void>
[src]
§
undeprecateDomain(params: UndeprecateDomainInput, opts?: client.RequestOptions): Promise<void>
[src]
§
undeprecateWorkflowType(params: UndeprecateWorkflowTypeInput, opts?: client.RequestOptions): Promise<void>
[src]
§
untagResource(params: UntagResourceInput, opts?: client.RequestOptions): Promise<void>
[src]

§Static Properties