pub enum CreateApplicationError {
CodeValidation(String),
ConcurrentModification(String),
InvalidArgument(String),
InvalidRequest(String),
LimitExceeded(String),
ResourceInUse(String),
TooManyTags(String),
}Expand description
Errors returned by CreateApplication
Variants§
CodeValidation(String)
The user-provided application code (query) is not valid. This can be a simple syntax error.
ConcurrentModification(String)
Exception thrown as a result of concurrent modifications to an application. This error can be the result of attempting to modify an application without using the current application ID.
InvalidArgument(String)
The specified input parameter value is not valid.
InvalidRequest(String)
The request JSON is not valid for the operation.
LimitExceeded(String)
The number of allowed resources has been exceeded.
ResourceInUse(String)
The application is not available for this operation.
TooManyTags(String)
Application created with too many tags, or too many tags added to an application. Note that the maximum number of application tags includes system tags. The maximum number of user-defined application tags is 50.
Implementations§
Source§impl CreateApplicationError
impl CreateApplicationError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<CreateApplicationError>
Trait Implementations§
Source§impl Debug for CreateApplicationError
impl Debug for CreateApplicationError
Source§impl Display for CreateApplicationError
impl Display for CreateApplicationError
Source§impl Error for CreateApplicationError
impl Error for CreateApplicationError
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 CreateApplicationError
impl PartialEq for CreateApplicationError
impl StructuralPartialEq for CreateApplicationError
Auto Trait Implementations§
impl Freeze for CreateApplicationError
impl RefUnwindSafe for CreateApplicationError
impl Send for CreateApplicationError
impl Sync for CreateApplicationError
impl Unpin for CreateApplicationError
impl UnwindSafe for CreateApplicationError
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