pub enum CreateIdentityPoolError {
InternalError(String),
InvalidParameter(String),
LimitExceeded(String),
NotAuthorized(String),
ResourceConflict(String),
TooManyRequests(String),
}Expand description
Errors returned by CreateIdentityPool
Variants§
InternalError(String)
Thrown when the service encounters an error during processing the request.
InvalidParameter(String)
Thrown for missing or bad input parameter(s).
LimitExceeded(String)
Thrown when the total number of user pools has exceeded a preset limit.
NotAuthorized(String)
Thrown when a user is not authorized to access the requested resource.
ResourceConflict(String)
Thrown when a user tries to use a login which is already linked to another account.
TooManyRequests(String)
Thrown when a request is throttled.
Implementations§
Source§impl CreateIdentityPoolError
impl CreateIdentityPoolError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<CreateIdentityPoolError>
Trait Implementations§
Source§impl Debug for CreateIdentityPoolError
impl Debug for CreateIdentityPoolError
Source§impl Display for CreateIdentityPoolError
impl Display for CreateIdentityPoolError
Source§impl Error for CreateIdentityPoolError
impl Error for CreateIdentityPoolError
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 CreateIdentityPoolError
impl PartialEq for CreateIdentityPoolError
impl StructuralPartialEq for CreateIdentityPoolError
Auto Trait Implementations§
impl Freeze for CreateIdentityPoolError
impl RefUnwindSafe for CreateIdentityPoolError
impl Send for CreateIdentityPoolError
impl Sync for CreateIdentityPoolError
impl Unpin for CreateIdentityPoolError
impl UnwindSafe for CreateIdentityPoolError
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