[][src]Struct rusoto_elasticbeanstalk::DescribeEnvironmentHealthResult

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_metrics: Option<ApplicationMetrics>

Application request metrics for the environment.

causes: Option<Vec<String>>

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

color: Option<String>

The health color of the environment.

environment_name: Option<String>

The environment's name.

health_status: Option<String>

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

instances_health: Option<InstanceHealthSummary>

Summary health information for the instances in the environment.

refreshed_at: Option<String>

The date and time that the health information was retrieved.

status: Option<String>

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

Trait Implementations

impl PartialEq<DescribeEnvironmentHealthResult> for DescribeEnvironmentHealthResult[src]

impl Default for DescribeEnvironmentHealthResult[src]

impl Clone for DescribeEnvironmentHealthResult[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for DescribeEnvironmentHealthResult[src]

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Erased for T