Class: Aws::SSM::Types::SendAutomationSignalRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::SSM::Types::SendAutomationSignalRequest
- Defined in:
- gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#automation_execution_id ⇒ String
The unique identifier for an existing Automation execution that you want to send the signal to.
-
#payload ⇒ Hash<String,Array<String>>
The data sent with the signal.
-
#signal_type ⇒ String
The type of signal to send to an Automation execution.
Instance Attribute Details
#automation_execution_id ⇒ String
The unique identifier for an existing Automation execution that you want to send the signal to.
17760 17761 17762 17763 17764 17765 17766 |
# File 'gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb', line 17760 class SendAutomationSignalRequest < Struct.new( :automation_execution_id, :signal_type, :payload) SENSITIVE = [] include Aws::Structure end |
#payload ⇒ Hash<String,Array<String>>
The data sent with the signal. The data schema depends on the type of signal used in the request.
For Approve and Reject signal types, the payload is an optional
comment that you can send with the signal type. For example:
Comment="Looks good"
For StartStep and Resume signal types, you must send the name of
the Automation step to start or resume as the payload. For example:
StepName="step1"
For the StopStep signal type, you must send the step execution ID
as the payload. For example:
StepExecutionId="97fff367-fc5a-4299-aed8-0123456789ab"
17760 17761 17762 17763 17764 17765 17766 |
# File 'gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb', line 17760 class SendAutomationSignalRequest < Struct.new( :automation_execution_id, :signal_type, :payload) SENSITIVE = [] include Aws::Structure end |
#signal_type ⇒ String
The type of signal to send to an Automation execution.
17760 17761 17762 17763 17764 17765 17766 |
# File 'gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb', line 17760 class SendAutomationSignalRequest < Struct.new( :automation_execution_id, :signal_type, :payload) SENSITIVE = [] include Aws::Structure end |