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

ChildWorkflowExecutionCompletedEventAttributes

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

Provides the details of the ChildWorkflowExecutionCompleted event.

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

§Properties

§
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.

§
result?: string | null
[src]

The result of the child workflow execution.

§
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 completed.

§
workflowType: WorkflowType
[src]

The type of the child workflow execution.