pub enum CreateProjectError {
ConcurrentModification(String),
InvalidServiceRole(String),
LimitExceeded(String),
ProjectAlreadyExists(String),
ProjectConfiguration(String),
ProjectCreationFailed(String),
}
Expand description
Errors returned by CreateProject
Variants§
ConcurrentModification(String)
Another modification is being made. That modification must complete before you can make your change.
InvalidServiceRole(String)
The service role is not valid.
LimitExceeded(String)
A resource limit has been exceeded.
ProjectAlreadyExists(String)
An AWS CodeStar project with the same ID already exists in this region for the AWS account. AWS CodeStar project IDs must be unique within a region for the AWS account.
ProjectConfiguration(String)
Project configuration information is required but not specified.
ProjectCreationFailed(String)
The project creation request was valid, but a nonspecific exception or error occurred during project creation. The project could not be created in AWS CodeStar.
Implementations§
Source§impl CreateProjectError
impl CreateProjectError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<CreateProjectError>
Trait Implementations§
Source§impl Debug for CreateProjectError
impl Debug for CreateProjectError
Source§impl Display for CreateProjectError
impl Display for CreateProjectError
Source§impl Error for CreateProjectError
impl Error for CreateProjectError
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 CreateProjectError
impl PartialEq for CreateProjectError
impl StructuralPartialEq for CreateProjectError
Auto Trait Implementations§
impl Freeze for CreateProjectError
impl RefUnwindSafe for CreateProjectError
impl Send for CreateProjectError
impl Sync for CreateProjectError
impl Unpin for CreateProjectError
impl UnwindSafe for CreateProjectError
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