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

SignalWorkflowExecutionInput

import type { SignalWorkflowExecutionInput } from "https://aws-api.deno.dev/v0.4/services/swf.ts?docs=full";
interface SignalWorkflowExecutionInput {
domain: string;
input?: string | null;
runId?: string | null;
signalName: string;
workflowId: string;
}

§Properties

§
domain: string
[src]

The name of the domain containing the workflow execution to signal.

§
input?: string | null
[src]

Data to attach to the WorkflowExecutionSignaled event in the target workflow execution's history.

§
runId?: string | null
[src]

The runId of the workflow execution to signal.

§
signalName: string
[src]

The name of the signal. This name must be meaningful to the target workflow.

§
workflowId: string
[src]

The workflowId of the workflow execution to signal.