pub enum ListGroupResourcesError {
BadRequest(String),
Forbidden(String),
InternalServerError(String),
MethodNotAllowed(String),
NotFound(String),
TooManyRequests(String),
Unauthorized(String),
}Expand description
Errors returned by ListGroupResources
Variants§
BadRequest(String)
The request includes one or more parameters that violate validation rules.
Forbidden(String)
The caller isn't authorized to make the request. Check permissions.
InternalServerError(String)
An internal error occurred while processing the request. Try again later.
MethodNotAllowed(String)
The request uses an HTTP method that isn't allowed for the specified resource.
NotFound(String)
One or more of the specified resources don't exist.
TooManyRequests(String)
You've exceeded throttling limits by making too many requests in a period of time.
The request was rejected because it doesn't have valid credentials for the target resource.
Implementations§
Source§impl ListGroupResourcesError
impl ListGroupResourcesError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<ListGroupResourcesError>
Trait Implementations§
Source§impl Debug for ListGroupResourcesError
impl Debug for ListGroupResourcesError
Source§impl Display for ListGroupResourcesError
impl Display for ListGroupResourcesError
Source§impl Error for ListGroupResourcesError
impl Error for ListGroupResourcesError
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 ListGroupResourcesError
impl PartialEq for ListGroupResourcesError
impl StructuralPartialEq for ListGroupResourcesError
Auto Trait Implementations§
impl Freeze for ListGroupResourcesError
impl RefUnwindSafe for ListGroupResourcesError
impl Send for ListGroupResourcesError
impl Sync for ListGroupResourcesError
impl Unpin for ListGroupResourcesError
impl UnwindSafe for ListGroupResourcesError
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