Sends a signal to an Automation execution to change the current behavior or status of the execution.
ssm_send_automation_signal(AutomationExecutionId, SignalType, Payload)[required] The unique identifier for an existing Automation execution that you want to send the signal to.
[required] The type of signal. Valid signal types include the following: Approve and Reject
The data sent with the signal. The data schema depends on the type of signal used in the request.
svc$send_automation_signal(
AutomationExecutionId = "string",
SignalType = "Approve"|"Reject"|"StartStep"|"StopStep"|"Resume",
Payload = list(
list(
"string"
)
)
)