Amazon Simple Workflow Service · Schema
WorkflowExecutionSignaledEventAttributes
Provides the details of the WorkflowExecutionSignaled event.
AutomationTask CoordinationWorkflow
Properties
| Name | Type | Description |
|---|---|---|
| signalName | object | |
| input | object | |
| externalWorkflowExecution | object | |
| externalInitiatedEventId | object |
JSON Schema
{
"type": "object",
"required": [
"signalName"
],
"properties": {
"signalName": {
"allOf": [
{
"$ref": "#/components/schemas/SignalName"
},
{
"description": "The name of the signal received. The decider can use the signal name and inputs to determine how to the process the signal."
}
]
},
"input": {
"allOf": [
{
"$ref": "#/components/schemas/Data"
},
{
"description": "The inputs provided with the signal. The decider can use the signal name and inputs to determine how to process the signal."
}
]
},
"externalWorkflowExecution": {
"allOf": [
{
"$ref": "#/components/schemas/WorkflowExecution"
},
{
"description": "The workflow execution that sent the signal. This is set only of the signal was sent by another workflow execution."
}
]
},
"externalInitiatedEventId": {
"allOf": [
{
"$ref": "#/components/schemas/EventId"
},
{
"description": "The ID of the <code>SignalExternalWorkflowExecutionInitiated</code> event corresponding to the <code>SignalExternalWorkflow</code> 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."
}
]
}
},
"description": "Provides the details of the <code>WorkflowExecutionSignaled</code> event.",
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "WorkflowExecutionSignaledEventAttributes"
}