Struct rusoto_elasticbeanstalk::DescribeInstancesHealthRequest[][src]

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

Parameters for a call to DescribeInstancesHealth.

Fields

Specifies the response elements you wish to receive. To retrieve all attributes, set to All. If no attribute names are specified, returns a list of instances.

Specify the AWS Elastic Beanstalk environment by ID.

Specify the AWS Elastic Beanstalk environment by name.

Specify the pagination token returned by a previous call.

Trait Implementations

impl Default for DescribeInstancesHealthRequest
[src]

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

impl Debug for DescribeInstancesHealthRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeInstancesHealthRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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