Struct rusoto_autoscaling::SuspendedProcess[][src]

pub struct SuspendedProcess {
    pub process_name: Option<String>,
    pub suspension_reason: Option<String>,
}

Describes an Auto Scaling process that has been suspended. For more information, see ProcessType.

Fields

The name of the suspended process.

The reason that the process was suspended.

Trait Implementations

impl Default for SuspendedProcess
[src]

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

impl Debug for SuspendedProcess
[src]

Formats the value using the given formatter. Read more

impl Clone for SuspendedProcess
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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