Struct rusoto_elasticbeanstalk::SystemStatus[][src]

pub struct SystemStatus {
    pub cpu_utilization: Option<CPUUtilization>,
    pub load_average: Option<Vec<f64>>,
}

CPU utilization and load average metrics for an Amazon EC2 instance.

Fields

CPU utilization metrics for the instance.

Load average in the last 1-minute, 5-minute, and 15-minute periods. For more information, see Operating System Metrics.

Trait Implementations

impl Default for SystemStatus
[src]

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

impl Debug for SystemStatus
[src]

Formats the value using the given formatter. Read more

impl Clone for SystemStatus
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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