[][src]Struct rusoto_ssm::SendAutomationSignalRequest

pub struct SendAutomationSignalRequest {
    pub automation_execution_id: String,
    pub payload: Option<HashMap<String, Vec<String>>>,
    pub signal_type: String,
}

Fields

automation_execution_id: String

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

payload: 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"

signal_type: String

The type of signal to send to an Automation execution.

Trait Implementations

impl Clone for SendAutomationSignalRequest[src]

impl Default for SendAutomationSignalRequest[src]

impl PartialEq<SendAutomationSignalRequest> for SendAutomationSignalRequest[src]

impl Debug for SendAutomationSignalRequest[src]

impl StructuralPartialEq for SendAutomationSignalRequest[src]

impl Serialize for SendAutomationSignalRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self