#[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
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
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DeleteApplicationVersion, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DeleteApplicationVersion, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<DeleteApplicationVersion
>
Creates a new builder-style object to manufacture DeleteApplicationVersionInput
The name of the application to which the version belongs.
The label of the version to delete.
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
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl Send for DeleteApplicationVersionInput
impl Sync for DeleteApplicationVersionInput
impl Unpin for DeleteApplicationVersionInput
impl UnwindSafe for DeleteApplicationVersionInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more