#[non_exhaustive]pub struct DeleteApplicationVersionInput { /* private fields */ }
Expand description
Request to delete an application version.
Implementations§
source§impl DeleteApplicationVersionInput
impl DeleteApplicationVersionInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DeleteApplicationVersion, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DeleteApplicationVersion, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<DeleteApplicationVersion
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DeleteApplicationVersionInput
.
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.
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 ==
.