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

WorkflowExecutionCancelRequestedEventAttributes

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

Provides the details of the WorkflowExecutionCancelRequested event.

interface WorkflowExecutionCancelRequestedEventAttributes {
externalInitiatedEventId?: number | null;
externalWorkflowExecution?: WorkflowExecution | null;
}

§Properties

§

If set, indicates that the request to cancel the workflow execution was automatically generated, and specifies the cause. This happens if the parent workflow execution times out or is terminated, and the child policy is set to cancel child executions.

§
externalInitiatedEventId?: number | null
[src]

The ID of the RequestCancelExternalWorkflowExecutionInitiated event corresponding to the RequestCancelExternalWorkflowExecution decision to cancel this workflow execution.The source event with this ID can be found in the history of the source workflow execution. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.

§
externalWorkflowExecution?: WorkflowExecution | null
[src]

The external workflow execution for which the cancellation was requested.