Struct rusoto_ssm::StopAutomationExecutionRequest[][src]

pub struct StopAutomationExecutionRequest {
    pub automation_execution_id: String,
    pub type_: Option<String>,
}

Fields

The execution ID of the Automation to stop.

The stop request type. Valid types include the following: Cancel and Complete. The default type is Cancel.

Trait Implementations

impl Default for StopAutomationExecutionRequest
[src]

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

impl Debug for StopAutomationExecutionRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for StopAutomationExecutionRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for StopAutomationExecutionRequest
[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