Struct rusoto_elasticbeanstalk::UpdateApplicationVersionMessage[][src]

pub struct UpdateApplicationVersionMessage {
    pub application_name: String,
    pub description: Option<String>,
    pub version_label: String,
}

Fields

The name of the application associated with this version.

If no application is found with this name, UpdateApplication returns an InvalidParameterValue error.

A new description for this version.

The name of the version to update.

If no application version is found with this label, UpdateApplication returns an InvalidParameterValue error.

Trait Implementations

impl Default for UpdateApplicationVersionMessage
[src]

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

impl Debug for UpdateApplicationVersionMessage
[src]

Formats the value using the given formatter. Read more

impl Clone for UpdateApplicationVersionMessage
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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