Struct rusoto_ssm::SendAutomationSignalRequest[][src]

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

Fields

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

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

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

Trait Implementations

impl Default for SendAutomationSignalRequest
[src]

Returns the "default value" for a type. Read more

impl Debug for SendAutomationSignalRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for SendAutomationSignalRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for SendAutomationSignalRequest
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations