Struct rusoto_elasticbeanstalk::DescribeEnvironmentHealthRequest[][src]

pub struct DescribeEnvironmentHealthRequest {
    pub attribute_names: Option<Vec<String>>,
    pub environment_id: Option<String>,
    pub environment_name: Option<String>,
}

See the example below to learn how to create a request body.

Fields

Specify the response elements to return. To retrieve all attributes, set to All. If no attribute names are specified, returns the name of the environment.

Specify the environment by ID.

You must specify either this or an EnvironmentName, or both.

Specify the environment by name.

You must specify either this or an EnvironmentName, or both.

Trait Implementations

impl Default for DescribeEnvironmentHealthRequest
[src]

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

impl Debug for DescribeEnvironmentHealthRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeEnvironmentHealthRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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