SignalWorkflowExecutionInput

AutomationTask CoordinationWorkflow

Properties

Name Type Description
domain object
workflowId object
runId object
signalName object
input object
View JSON Schema on GitHub

JSON Schema

amazon-swf-signalworkflowexecutioninput-schema.json Raw ↑
{
  "type": "object",
  "required": [
    "domain",
    "workflowId",
    "signalName"
  ],
  "title": "SignalWorkflowExecutionInput",
  "properties": {
    "domain": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DomainName"
        },
        {
          "description": "The name of the domain containing the workflow execution to signal."
        }
      ]
    },
    "workflowId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/WorkflowId"
        },
        {
          "description": "The workflowId of the workflow execution to signal."
        }
      ]
    },
    "runId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/WorkflowRunIdOptional"
        },
        {
          "description": "The runId of the workflow execution to signal."
        }
      ]
    },
    "signalName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SignalName"
        },
        {
          "description": "The name of the signal. This name must be meaningful to the target workflow."
        }
      ]
    },
    "input": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Data"
        },
        {
          "description": "Data to attach to the <code>WorkflowExecutionSignaled</code> event in the target workflow execution's history."
        }
      ]
    }
  },
  "$schema": "http://json-schema.org/draft-07/schema#"
}