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

ChildWorkflowExecutionTimedOutEventAttributes

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

Provides the details of the ChildWorkflowExecutionTimedOut event.

interface ChildWorkflowExecutionTimedOutEventAttributes {
initiatedEventId: number;
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.

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

§

The type of the timeout that caused the child workflow execution to time out.

§
workflowExecution: WorkflowExecution
[src]

The child workflow execution that timed out.

§
workflowType: WorkflowType
[src]

The type of the child workflow execution.