Struct aws_sdk_elasticbeanstalk::operation::delete_application_version::DeleteApplicationVersionInput
source · #[non_exhaustive]pub struct DeleteApplicationVersionInput {
pub application_name: Option<String>,
pub version_label: Option<String>,
pub delete_source_bundle: Option<bool>,
}
Expand description
Request to delete an application version.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.application_name: Option<String>
The name of the application to which the version belongs.
version_label: Option<String>
The label of the version to delete.
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.
Implementations§
source§impl DeleteApplicationVersionInput
impl DeleteApplicationVersionInput
sourcepub fn application_name(&self) -> Option<&str>
pub fn application_name(&self) -> Option<&str>
The name of the application to which the version belongs.
sourcepub fn version_label(&self) -> Option<&str>
pub fn version_label(&self) -> Option<&str>
The label of the version to delete.
sourcepub fn delete_source_bundle(&self) -> Option<bool>
pub fn delete_source_bundle(&self) -> 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.
source§impl DeleteApplicationVersionInput
impl DeleteApplicationVersionInput
sourcepub fn builder() -> DeleteApplicationVersionInputBuilder
pub fn builder() -> DeleteApplicationVersionInputBuilder
Creates a new builder-style object to manufacture DeleteApplicationVersionInput
.
Trait Implementations§
source§impl Clone for DeleteApplicationVersionInput
impl Clone for DeleteApplicationVersionInput
source§fn clone(&self) -> DeleteApplicationVersionInput
fn clone(&self) -> DeleteApplicationVersionInput
Returns a copy 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 PartialEq<DeleteApplicationVersionInput> for DeleteApplicationVersionInput
impl PartialEq<DeleteApplicationVersionInput> for DeleteApplicationVersionInput
source§fn eq(&self, other: &DeleteApplicationVersionInput) -> bool
fn eq(&self, other: &DeleteApplicationVersionInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DeleteApplicationVersionInput
Auto Trait Implementations§
impl RefUnwindSafe for DeleteApplicationVersionInput
impl Send for DeleteApplicationVersionInput
impl Sync for DeleteApplicationVersionInput
impl Unpin for DeleteApplicationVersionInput
impl UnwindSafe for DeleteApplicationVersionInput
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