Struct rusoto_elasticbeanstalk::RebuildEnvironmentMessage[][src]

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

Fields

The ID of the environment to rebuild.

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 rebuild.

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 RebuildEnvironmentMessage
[src]

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

impl Debug for RebuildEnvironmentMessage
[src]

Formats the value using the given formatter. Read more

impl Clone for RebuildEnvironmentMessage
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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