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

SignalExternalWorkflowExecutionInitiatedEventAttributes

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

Provides the details of the SignalExternalWorkflowExecutionInitiated event.

interface SignalExternalWorkflowExecutionInitiatedEventAttributes {
control?: string | null;
decisionTaskCompletedEventId: number;
input?: string | null;
runId?: string | null;
signalName: string;
workflowId: string;
}

§Properties

§
control?: string | null
[src]

Data attached to the event that can be used by the decider in subsequent decision tasks.

§
decisionTaskCompletedEventId: number
[src]

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

§
input?: string | null
[src]

The input provided to the signal.

§
runId?: string | null
[src]

The runId of the external workflow execution to send the signal to.

§
signalName: string
[src]

The name of the signal.

§
workflowId: string
[src]

The workflowId of the external workflow execution.