pub struct DeleteApplicationVersionMessage {
pub application_name: String,
pub delete_source_bundle: Option<bool>,
pub version_label: String,
}
Expand description
Request to delete an application version.
Fields§
§application_name: String
The name of the application to which the version belongs.
delete_source_bundle: Option<bool>
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.
version_label: String
The label of the version to delete.
Trait Implementations§
Source§impl Clone for DeleteApplicationVersionMessage
impl Clone for DeleteApplicationVersionMessage
Source§fn clone(&self) -> DeleteApplicationVersionMessage
fn clone(&self) -> DeleteApplicationVersionMessage
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for DeleteApplicationVersionMessage
impl Default for DeleteApplicationVersionMessage
Source§fn default() -> DeleteApplicationVersionMessage
fn default() -> DeleteApplicationVersionMessage
Returns the “default value” for a type. Read more
Source§impl PartialEq for DeleteApplicationVersionMessage
impl PartialEq for DeleteApplicationVersionMessage
Source§fn eq(&self, other: &DeleteApplicationVersionMessage) -> bool
fn eq(&self, other: &DeleteApplicationVersionMessage) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DeleteApplicationVersionMessage
Auto Trait Implementations§
impl Freeze for DeleteApplicationVersionMessage
impl RefUnwindSafe for DeleteApplicationVersionMessage
impl Send for DeleteApplicationVersionMessage
impl Sync for DeleteApplicationVersionMessage
impl Unpin for DeleteApplicationVersionMessage
impl UnwindSafe for DeleteApplicationVersionMessage
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more