#[non_exhaustive]
pub enum CreateIdentityPoolErrorKind {
    InternalErrorException(InternalErrorException),
    InvalidParameterException(InvalidParameterException),
    LimitExceededException(LimitExceededException),
    NotAuthorizedException(NotAuthorizedException),
    ResourceConflictException(ResourceConflictException),
    TooManyRequestsException(TooManyRequestsException),
    Unhandled(Box<dyn Error + Send + Sync + 'static>),
}Expand description
Types of errors that can occur for the CreateIdentityPool operation.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
InternalErrorException(InternalErrorException)
Thrown when the service encounters an error during processing the request.
InvalidParameterException(InvalidParameterException)
Thrown for missing or bad input parameter(s).
LimitExceededException(LimitExceededException)
Thrown when the total number of user pools has exceeded a preset limit.
NotAuthorizedException(NotAuthorizedException)
Thrown when a user is not authorized to access the requested resource.
ResourceConflictException(ResourceConflictException)
Thrown when a user tries to use a login which is already linked to another account.
TooManyRequestsException(TooManyRequestsException)
Thrown when a request is throttled.
Unhandled(Box<dyn Error + Send + Sync + 'static>)
An unexpected error, e.g. invalid JSON returned by the service or an unknown error code
Trait Implementations
Auto Trait Implementations
impl !RefUnwindSafe for CreateIdentityPoolErrorKind
impl Send for CreateIdentityPoolErrorKind
impl Sync for CreateIdentityPoolErrorKind
impl Unpin for CreateIdentityPoolErrorKind
impl !UnwindSafe for CreateIdentityPoolErrorKind
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more