Struct rusoto_elasticbeanstalk::UpdateApplicationMessage[][src]

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

Request to update an application.

Fields

The name of the application to update. If no such application is found, UpdateApplication returns an InvalidParameterValue error.

A new description for the application.

Default: If not specified, AWS Elastic Beanstalk does not update the description.

Trait Implementations

impl Default for UpdateApplicationMessage
[src]

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

impl Debug for UpdateApplicationMessage
[src]

Formats the value using the given formatter. Read more

impl Clone for UpdateApplicationMessage
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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