#[non_exhaustive]pub enum Error {
Show 14 variants
AccessDeniedException(AccessDeniedException),
AuthorizationPendingException(AuthorizationPendingException),
ExpiredTokenException(ExpiredTokenException),
InternalServerException(InternalServerException),
InvalidClientException(InvalidClientException),
InvalidClientMetadataException(InvalidClientMetadataException),
InvalidGrantException(InvalidGrantException),
InvalidRequestException(InvalidRequestException),
InvalidRequestRegionException(InvalidRequestRegionException),
InvalidScopeException(InvalidScopeException),
SlowDownException(SlowDownException),
UnauthorizedClientException(UnauthorizedClientException),
UnsupportedGrantTypeException(UnsupportedGrantTypeException),
Unhandled(Unhandled),
}
Expand description
All possible error types for this service.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
AccessDeniedException(AccessDeniedException)
You do not have sufficient access to perform this action.
AuthorizationPendingException(AuthorizationPendingException)
Indicates that a request to authorize a client with an access user session token is pending.
ExpiredTokenException(ExpiredTokenException)
Indicates that the token issued by the service is expired and is no longer valid.
InternalServerException(InternalServerException)
Indicates that an error from the service occurred while trying to process a request.
InvalidClientException(InvalidClientException)
Indicates that the clientId
or clientSecret
in the request is invalid. For example, this can occur when a client sends an incorrect clientId
or an expired clientSecret
.
InvalidClientMetadataException(InvalidClientMetadataException)
Indicates that the client information sent in the request during registration is invalid.
InvalidGrantException(InvalidGrantException)
Indicates that a request contains an invalid grant. This can occur if a client makes a CreateToken
request with an invalid grant type.
InvalidRequestException(InvalidRequestException)
Indicates that something is wrong with the input to the request. For example, a required parameter might be missing or out of range.
InvalidRequestRegionException(InvalidRequestRegionException)
Indicates that a token provided as input to the request was issued by and is only usable by calling IAM Identity Center endpoints in another region.
InvalidScopeException(InvalidScopeException)
Indicates that the scope provided in the request is invalid.
SlowDownException(SlowDownException)
Indicates that the client is making the request too frequently and is more than the service can handle.
Indicates that the client is not currently authorized to make the request. This can happen when a clientId
is not issued for a public client.
UnsupportedGrantTypeException(UnsupportedGrantTypeException)
Indicates that the grant type in the request is not supported by the service.
Unhandled(Unhandled)
Unhandled
directly is not forwards compatible. Instead, match using a variable wildcard pattern and check .code()
:
err if err.code() == Some("SpecificExceptionCode") => { /* handle the error */ }
See ProvideErrorMetadata
for what information is available for the error.An unexpected error occurred (e.g., invalid JSON returned by the service or an unknown error code).