pub enum UpdateUserPoolDomainError {
InternalError(String),
InvalidParameter(String),
NotAuthorized(String),
ResourceNotFound(String),
TooManyRequests(String),
}Expand description
Errors returned by UpdateUserPoolDomain
Variants§
InternalError(String)
This exception is thrown when Amazon Cognito encounters an internal error.
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.
TooManyRequests(String)
This exception is thrown when the user has made too many requests for a given operation.
Implementations§
Source§impl UpdateUserPoolDomainError
impl UpdateUserPoolDomainError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<UpdateUserPoolDomainError>
Trait Implementations§
Source§impl Debug for UpdateUserPoolDomainError
impl Debug for UpdateUserPoolDomainError
Source§impl Display for UpdateUserPoolDomainError
impl Display for UpdateUserPoolDomainError
Source§impl Error for UpdateUserPoolDomainError
impl Error for UpdateUserPoolDomainError
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 UpdateUserPoolDomainError
Auto Trait Implementations§
impl Freeze for UpdateUserPoolDomainError
impl RefUnwindSafe for UpdateUserPoolDomainError
impl Send for UpdateUserPoolDomainError
impl Sync for UpdateUserPoolDomainError
impl Unpin for UpdateUserPoolDomainError
impl UnwindSafe for UpdateUserPoolDomainError
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