Struct aws_sdk_ssm::input::SendAutomationSignalInput
source · [−]#[non_exhaustive]pub struct SendAutomationSignalInput { /* private fields */ }
Implementations
sourceimpl SendAutomationSignalInput
impl SendAutomationSignalInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<SendAutomationSignal, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<SendAutomationSignal, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<SendAutomationSignal
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture SendAutomationSignalInput
.
sourceimpl SendAutomationSignalInput
impl SendAutomationSignalInput
sourcepub fn automation_execution_id(&self) -> Option<&str>
pub fn automation_execution_id(&self) -> Option<&str>
The unique identifier for an existing Automation execution that you want to send the signal to.
sourcepub fn signal_type(&self) -> Option<&SignalType>
pub fn signal_type(&self) -> Option<&SignalType>
The type of signal to send to an Automation execution.
sourcepub fn payload(&self) -> Option<&HashMap<String, Vec<String>>>
pub fn payload(&self) -> Option<&HashMap<String, Vec<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"
Trait Implementations
sourceimpl Clone for SendAutomationSignalInput
impl Clone for SendAutomationSignalInput
sourcefn clone(&self) -> SendAutomationSignalInput
fn clone(&self) -> SendAutomationSignalInput
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more