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

WorkflowExecutionCompletedEventAttributes

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

Provides the details of the WorkflowExecutionCompleted event.

interface WorkflowExecutionCompletedEventAttributes {
decisionTaskCompletedEventId: number;
result?: string | null;
}

§Properties

§
decisionTaskCompletedEventId: number
[src]

The ID of the DecisionTaskCompleted event corresponding to the decision task that resulted in the CompleteWorkflowExecution decision to complete this 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 produced by the workflow execution upon successful completion.