pub enum DeleteApplicationVersionError {
InsufficientPrivileges(String),
OperationInProgress(String),
S3LocationNotInServiceRegion(String),
SourceBundleDeletion(String),
}
Expand description
Errors returned by DeleteApplicationVersion
Variants§
InsufficientPrivileges(String)
The specified account does not have sufficient privileges for one or more AWS services.
OperationInProgress(String)
Unable to perform the specified operation because another operation that effects an element in this activity is already in progress.
S3LocationNotInServiceRegion(String)
The specified S3 bucket does not belong to the S3 region in which the service is running. The following regions are supported:
-
IAD/us-east-1
-
PDX/us-west-2
-
DUB/eu-west-1
SourceBundleDeletion(String)
Unable to delete the Amazon S3 source bundle associated with the application version. The application version was deleted successfully.
Implementations§
Trait Implementations§
Source§impl Error for DeleteApplicationVersionError
impl Error for DeleteApplicationVersionError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl PartialEq for DeleteApplicationVersionError
impl PartialEq for DeleteApplicationVersionError
Source§fn eq(&self, other: &DeleteApplicationVersionError) -> bool
fn eq(&self, other: &DeleteApplicationVersionError) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DeleteApplicationVersionError
Auto Trait Implementations§
impl Freeze for DeleteApplicationVersionError
impl RefUnwindSafe for DeleteApplicationVersionError
impl Send for DeleteApplicationVersionError
impl Sync for DeleteApplicationVersionError
impl Unpin for DeleteApplicationVersionError
impl UnwindSafe for DeleteApplicationVersionError
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