pub enum DeleteWorldTemplateError {
InternalServer(String),
InvalidParameter(String),
ResourceNotFound(String),
Throttling(String),
}Expand description
Errors returned by DeleteWorldTemplate
Variants§
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.
ResourceNotFound(String)
The specified resource does not exist.
Throttling(String)
AWS RoboMaker is temporarily unable to process the request. Try your call again.
Implementations§
Source§impl DeleteWorldTemplateError
impl DeleteWorldTemplateError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<DeleteWorldTemplateError>
Trait Implementations§
Source§impl Debug for DeleteWorldTemplateError
impl Debug for DeleteWorldTemplateError
Source§impl Display for DeleteWorldTemplateError
impl Display for DeleteWorldTemplateError
Source§impl Error for DeleteWorldTemplateError
impl Error for DeleteWorldTemplateError
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 DeleteWorldTemplateError
impl PartialEq for DeleteWorldTemplateError
impl StructuralPartialEq for DeleteWorldTemplateError
Auto Trait Implementations§
impl Freeze for DeleteWorldTemplateError
impl RefUnwindSafe for DeleteWorldTemplateError
impl Send for DeleteWorldTemplateError
impl Sync for DeleteWorldTemplateError
impl Unpin for DeleteWorldTemplateError
impl UnwindSafe for DeleteWorldTemplateError
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