pub enum CreateRobotApplicationError {
IdempotentParameterMismatch(String),
InternalServer(String),
InvalidParameter(String),
LimitExceeded(String),
ResourceAlreadyExists(String),
Throttling(String),
}Expand description
Errors returned by CreateRobotApplication
Variants§
IdempotentParameterMismatch(String)
The request uses the same client token as a previous, but non-identical request. Do not reuse a client token with different requests, unless the requests are identical.
InternalServer(String)
AWS RoboMaker experienced a service issue. Try your call again.
InvalidParameter(String)
A parameter specified in a request is not valid, is unsupported, or cannot be used. The returned message provides an explanation of the error value.
LimitExceeded(String)
The requested resource exceeds the maximum number allowed, or the number of concurrent stream requests exceeds the maximum number allowed.
ResourceAlreadyExists(String)
The specified resource already exists.
Throttling(String)
AWS RoboMaker is temporarily unable to process the request. Try your call again.
Implementations§
Source§impl CreateRobotApplicationError
impl CreateRobotApplicationError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<CreateRobotApplicationError>
Trait Implementations§
Source§impl Debug for CreateRobotApplicationError
impl Debug for CreateRobotApplicationError
Source§impl Error for CreateRobotApplicationError
impl Error for CreateRobotApplicationError
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()
impl StructuralPartialEq for CreateRobotApplicationError
Auto Trait Implementations§
impl Freeze for CreateRobotApplicationError
impl RefUnwindSafe for CreateRobotApplicationError
impl Send for CreateRobotApplicationError
impl Sync for CreateRobotApplicationError
impl Unpin for CreateRobotApplicationError
impl UnwindSafe for CreateRobotApplicationError
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