Struct rusoto_elasticbeanstalk::DeleteApplicationMessage[][src]

pub struct DeleteApplicationMessage {
    pub application_name: String,
    pub terminate_env_by_force: Option<bool>,
}

Request to delete an application.

Fields

The name of the application to delete.

When set to true, running environments will be terminated before deleting the application.

Trait Implementations

impl Default for DeleteApplicationMessage
[src]

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

impl Debug for DeleteApplicationMessage
[src]

Formats the value using the given formatter. Read more

impl Clone for DeleteApplicationMessage
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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