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

RequestCancelExternalWorkflowExecutionInitiatedEventAttributes

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

Provides the details of the RequestCancelExternalWorkflowExecutionInitiated event.

interface RequestCancelExternalWorkflowExecutionInitiatedEventAttributes {
control?: string | null;
decisionTaskCompletedEventId: number;
runId?: string | null;
workflowId: string;
}

§Properties

§
control?: string | null
[src]

Data attached to the event that can be used by the decider in subsequent workflow tasks.

§
decisionTaskCompletedEventId: number
[src]

The ID of the DecisionTaskCompleted event corresponding to the decision task that resulted in the RequestCancelExternalWorkflowExecution decision for this cancellation request. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.

§
runId?: string | null
[src]

The runId of the external workflow execution to be canceled.

§
workflowId: string
[src]

The workflowId of the external workflow execution to be canceled.