Struct rusoto_elasticbeanstalk::DescribeEnvironmentResourcesMessage [] [src]

pub struct DescribeEnvironmentResourcesMessage {
    pub environment_id: Option<String>,
    pub environment_name: Option<String>,
}

Request to describe the resources in an environment.

Fields

The ID of the environment to retrieve AWS resource usage data.

Condition: You must specify either this or an EnvironmentName, or both. If you do not specify either, AWS Elastic Beanstalk returns MissingRequiredParameter error.

The name of the environment to retrieve AWS resource usage data.

Condition: You must specify either this or an EnvironmentId, or both. If you do not specify either, AWS Elastic Beanstalk returns MissingRequiredParameter error.

Trait Implementations

impl Default for DescribeEnvironmentResourcesMessage
[src]

[src]

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

impl Debug for DescribeEnvironmentResourcesMessage
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeEnvironmentResourcesMessage
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations