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

WorkflowExecutionDetail

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

Contains details about a workflow execution.

interface WorkflowExecutionDetail {
executionConfiguration: WorkflowExecutionConfiguration;
executionInfo: WorkflowExecutionInfo;
latestActivityTaskTimestamp?: Date | number | null;
latestExecutionContext?: string | null;
}

§Properties

§
executionConfiguration: WorkflowExecutionConfiguration
[src]

The configuration settings for this workflow execution including timeout values, tasklist etc.

§

Information about the workflow execution.

§
latestActivityTaskTimestamp?: Date | number | null
[src]

The time when the last activity task was scheduled for this workflow execution. You can use this information to determine if the workflow has not made progress for an unusually long period of time and might require a corrective action.

§
latestExecutionContext?: string | null
[src]

The latest executionContext provided by the decider for this workflow execution. A decider can provide an executionContext (a free-form string) when closing a decision task using "RespondDecisionTaskCompleted".

§

The number of tasks for this workflow execution. This includes open and closed tasks of all types.