paws.management (version 0.1.0)

ssm_send_automation_signal: Sends a signal to an Automation execution to change the current behavior or status of the execution

Description

Sends a signal to an Automation execution to change the current behavior or status of the execution.

Usage

ssm_send_automation_signal(AutomationExecutionId, SignalType, Payload)

Arguments

AutomationExecutionId

[required] The unique identifier for an existing Automation execution that you want to send the signal to.

SignalType

[required] The type of signal. Valid signal types include the following: Approve and Reject

Payload

The data sent with the signal. The data schema depends on the type of signal used in the request.

Request syntax

svc$send_automation_signal(
  AutomationExecutionId = "string",
  SignalType = "Approve"|"Reject"|"StartStep"|"StopStep"|"Resume",
  Payload = list(
    list(
      "string"
    )
  )
)