Struct rusoto_elasticbeanstalk::DeleteApplicationVersionMessage [] [src]

pub struct DeleteApplicationVersionMessage {
    pub application_name: String,
    pub delete_source_bundle: Option<bool>,
    pub version_label: String,
}

Request to delete an application version.

Fields

The name of the application to which the version belongs.

Set to true to delete the source bundle from your storage bucket. Otherwise, the application version is deleted only from Elastic Beanstalk and the source bundle remains in Amazon S3.

The label of the version to delete.

Trait Implementations

impl Default for DeleteApplicationVersionMessage
[src]

[src]

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

impl Debug for DeleteApplicationVersionMessage
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for DeleteApplicationVersionMessage
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations