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

WorkflowExecutionTimedOutEventAttributes

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

Provides the details of the WorkflowExecutionTimedOut event.

interface WorkflowExecutionTimedOutEventAttributes {
childPolicy: ChildPolicy;
}

§Properties

§
childPolicy: ChildPolicy
[src]

The policy used for the child workflow executions of this workflow execution.

The supported child policies are:

  • TERMINATE – The child executions are terminated.
  • REQUEST_CANCEL – A request to cancel is attempted for each child execution by recording a WorkflowExecutionCancelRequested event in its history. It is up to the decider to take appropriate actions when it receives an execution history with this event.
  • ABANDON – No action is taken. The child executions continue to run.
§

The type of timeout that caused this event.