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

ChildWorkflowExecutionCanceledEventAttributes

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

Provide details of the ChildWorkflowExecutionCanceled event.

interface ChildWorkflowExecutionCanceledEventAttributes {
details?: string | null;
initiatedEventId: number;
startedEventId: number;
workflowExecution: WorkflowExecution;
workflowType: WorkflowType;
}

§Properties

§
details?: string | null
[src]

Details of the cancellation (if provided).

§
initiatedEventId: number
[src]

The ID of the StartChildWorkflowExecutionInitiated event corresponding to the StartChildWorkflowExecution "Decision" to start this child workflow execution. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.

§
startedEventId: number
[src]

The ID of the ChildWorkflowExecutionStarted event recorded when this child workflow execution was started. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.

§
workflowExecution: WorkflowExecution
[src]

The child workflow execution that was canceled.

§
workflowType: WorkflowType
[src]

The type of the child workflow execution.