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

WorkflowExecutionSignaledEventAttributes

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

Provides the details of the WorkflowExecutionSignaled event.

interface WorkflowExecutionSignaledEventAttributes {
externalInitiatedEventId?: number | null;
externalWorkflowExecution?: WorkflowExecution | null;
input?: string | null;
signalName: string;
}

§Properties

§
externalInitiatedEventId?: number | null
[src]

The ID of the SignalExternalWorkflowExecutionInitiated event corresponding to the SignalExternalWorkflow decision to signal this workflow execution.The source event with this ID can be found in the history of the source workflow execution. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event. This field is set only if the signal was initiated by another workflow execution.

§
externalWorkflowExecution?: WorkflowExecution | null
[src]

The workflow execution that sent the signal. This is set only of the signal was sent by another workflow execution.

§
input?: string | null
[src]

The inputs provided with the signal. The decider can use the signal name and inputs to determine how to process the signal.

§
signalName: string
[src]

The name of the signal received. The decider can use the signal name and inputs to determine how to the process the signal.