Struct rusoto_ec2::InstanceStateChange[][src]

pub struct InstanceStateChange {
    pub current_state: Option<InstanceState>,
    pub instance_id: Option<String>,
    pub previous_state: Option<InstanceState>,
}

Describes an instance state change.

Fields

The current state of the instance.

The ID of the instance.

The previous state of the instance.

Trait Implementations

impl Default for InstanceStateChange
[src]

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

impl Debug for InstanceStateChange
[src]

Formats the value using the given formatter. Read more

impl Clone for InstanceStateChange
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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