pub enum UpdateUserPoolClientError {
ConcurrentModification(String),
InternalError(String),
InvalidOAuthFlow(String),
InvalidParameter(String),
NotAuthorized(String),
ResourceNotFound(String),
ScopeDoesNotExist(String),
TooManyRequests(String),
}Expand description
Errors returned by UpdateUserPoolClient
Variants§
ConcurrentModification(String)
This exception is thrown if two or more modifications are happening concurrently.
InternalError(String)
This exception is thrown when Amazon Cognito encounters an internal error.
InvalidOAuthFlow(String)
This exception is thrown when the specified OAuth flow is invalid.
InvalidParameter(String)
This exception is thrown when the Amazon Cognito service encounters an invalid parameter.
NotAuthorized(String)
This exception is thrown when a user is not authorized.
ResourceNotFound(String)
This exception is thrown when the Amazon Cognito service cannot find the requested resource.
ScopeDoesNotExist(String)
This exception is thrown when the specified scope does not exist.
TooManyRequests(String)
This exception is thrown when the user has made too many requests for a given operation.
Implementations§
Source§impl UpdateUserPoolClientError
impl UpdateUserPoolClientError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<UpdateUserPoolClientError>
Trait Implementations§
Source§impl Debug for UpdateUserPoolClientError
impl Debug for UpdateUserPoolClientError
Source§impl Display for UpdateUserPoolClientError
impl Display for UpdateUserPoolClientError
Source§impl Error for UpdateUserPoolClientError
impl Error for UpdateUserPoolClientError
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 UpdateUserPoolClientError
Auto Trait Implementations§
impl Freeze for UpdateUserPoolClientError
impl RefUnwindSafe for UpdateUserPoolClientError
impl Send for UpdateUserPoolClientError
impl Sync for UpdateUserPoolClientError
impl Unpin for UpdateUserPoolClientError
impl UnwindSafe for UpdateUserPoolClientError
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