Struct rusoto_elasticbeanstalk::DescribeEnvironmentHealthResult[][src]

pub struct DescribeEnvironmentHealthResult {
    pub application_metrics: Option<ApplicationMetrics>,
    pub causes: Option<Vec<String>>,
    pub color: Option<String>,
    pub environment_name: Option<String>,
    pub health_status: Option<String>,
    pub instances_health: Option<InstanceHealthSummary>,
    pub refreshed_at: Option<String>,
    pub status: Option<String>,
}

Health details for an AWS Elastic Beanstalk environment.

Fields

Application request metrics for the environment.

Descriptions of the data that contributed to the environment's current health status.

The health color of the environment.

The environment's name.

The health status of the environment. For example, Ok.

Summary health information for the instances in the environment.

The date and time that the health information was retrieved.

The environment's operational status. Ready, Launching, Updating, Terminating, or Terminated.

Trait Implementations

impl Default for DescribeEnvironmentHealthResult
[src]

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

impl Debug for DescribeEnvironmentHealthResult
[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeEnvironmentHealthResult
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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