pub enum DeleteResolverRuleError {
InternalServiceError(String),
InvalidParameter(String),
ResourceInUse(String),
ResourceNotFound(String),
Throttling(String),
}
Expand description
Errors returned by DeleteResolverRule
Variants§
InternalServiceError(String)
We encountered an unknown error. Try again in a few minutes.
InvalidParameter(String)
One or more parameters in this request are not valid.
ResourceInUse(String)
The resource that you tried to update or delete is currently in use.
ResourceNotFound(String)
The specified resource doesn't exist.
Throttling(String)
The request was throttled. Try again in a few minutes.
Implementations§
Source§impl DeleteResolverRuleError
impl DeleteResolverRuleError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<DeleteResolverRuleError>
Trait Implementations§
Source§impl Debug for DeleteResolverRuleError
impl Debug for DeleteResolverRuleError
Source§impl Display for DeleteResolverRuleError
impl Display for DeleteResolverRuleError
Source§impl Error for DeleteResolverRuleError
impl Error for DeleteResolverRuleError
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 DeleteResolverRuleError
impl PartialEq for DeleteResolverRuleError
impl StructuralPartialEq for DeleteResolverRuleError
Auto Trait Implementations§
impl Freeze for DeleteResolverRuleError
impl RefUnwindSafe for DeleteResolverRuleError
impl Send for DeleteResolverRuleError
impl Sync for DeleteResolverRuleError
impl Unpin for DeleteResolverRuleError
impl UnwindSafe for DeleteResolverRuleError
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