pub enum GetGroupConfigurationError {
BadRequest(String),
Forbidden(String),
InternalServerError(String),
MethodNotAllowed(String),
NotFound(String),
TooManyRequests(String),
}Expand description
Errors returned by GetGroupConfiguration
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.
Implementations§
Source§impl GetGroupConfigurationError
impl GetGroupConfigurationError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<GetGroupConfigurationError>
Trait Implementations§
Source§impl Debug for GetGroupConfigurationError
impl Debug for GetGroupConfigurationError
Source§impl Display for GetGroupConfigurationError
impl Display for GetGroupConfigurationError
Source§impl Error for GetGroupConfigurationError
impl Error for GetGroupConfigurationError
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 GetGroupConfigurationError
Auto Trait Implementations§
impl Freeze for GetGroupConfigurationError
impl RefUnwindSafe for GetGroupConfigurationError
impl Send for GetGroupConfigurationError
impl Sync for GetGroupConfigurationError
impl Unpin for GetGroupConfigurationError
impl UnwindSafe for GetGroupConfigurationError
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