pub enum CreateApplicationVersionError {
CodeBuildNotInServiceRegion(String),
InsufficientPrivileges(String),
S3LocationNotInServiceRegion(String),
TooManyApplicationVersions(String),
TooManyApplications(String),
}
Expand description
Errors returned by CreateApplicationVersion
Variants§
CodeBuildNotInServiceRegion(String)
AWS CodeBuild is not available in the specified region.
InsufficientPrivileges(String)
The specified account does not have sufficient privileges for one or more AWS services.
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
TooManyApplicationVersions(String)
The specified account has reached its limit of application versions.
TooManyApplications(String)
The specified account has reached its limit of applications.
Implementations§
Trait Implementations§
Source§impl Error for CreateApplicationVersionError
impl Error for CreateApplicationVersionError
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 CreateApplicationVersionError
impl PartialEq for CreateApplicationVersionError
Source§fn eq(&self, other: &CreateApplicationVersionError) -> bool
fn eq(&self, other: &CreateApplicationVersionError) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for CreateApplicationVersionError
Auto Trait Implementations§
impl Freeze for CreateApplicationVersionError
impl RefUnwindSafe for CreateApplicationVersionError
impl Send for CreateApplicationVersionError
impl Sync for CreateApplicationVersionError
impl Unpin for CreateApplicationVersionError
impl UnwindSafe for CreateApplicationVersionError
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