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

ChildWorkflowExecutionFailedEventAttributes

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

Provides the details of the ChildWorkflowExecutionFailed event.

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

§Properties

§
details?: string | null
[src]

The details of the failure (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.

§
reason?: string | null
[src]

The reason for the failure (if provided).

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

§
workflowType: WorkflowType
[src]

The type of the child workflow execution.