Struct rusoto_elasticbeanstalk::DescribeInstancesHealthResult[][src]

pub struct DescribeInstancesHealthResult {
    pub instance_health_list: Option<Vec<SingleInstanceHealth>>,
    pub next_token: Option<String>,
    pub refreshed_at: Option<String>,
}

Detailed health information about the Amazon EC2 instances in an AWS Elastic Beanstalk environment.

Fields

Detailed health information about each instance.

Pagination token for the next page of results, if available.

The date and time that the health information was retrieved.

Trait Implementations

impl Default for DescribeInstancesHealthResult
[src]

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

impl Debug for DescribeInstancesHealthResult
[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeInstancesHealthResult
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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