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

WorkflowExecutionFailedEventAttributes

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

Provides the details of the WorkflowExecutionFailed event.

interface WorkflowExecutionFailedEventAttributes {
decisionTaskCompletedEventId: number;
details?: string | null;
reason?: string | null;
}

§Properties

§
decisionTaskCompletedEventId: number
[src]

The ID of the DecisionTaskCompleted event corresponding to the decision task that resulted in the FailWorkflowExecution decision to fail this execution. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.

§
details?: string | null
[src]

The details of the failure.

§
reason?: string | null
[src]

The descriptive reason provided for the failure.