Enum aws_sdk_ssooidc::error::CreateTokenErrorKind[][src]

#[non_exhaustive]
pub enum CreateTokenErrorKind {
    AccessDeniedException(AccessDeniedException),
    AuthorizationPendingException(AuthorizationPendingException),
    ExpiredTokenException(ExpiredTokenException),
    InternalServerException(InternalServerException),
    InvalidClientException(InvalidClientException),
    InvalidGrantException(InvalidGrantException),
    InvalidRequestException(InvalidRequestException),
    InvalidScopeException(InvalidScopeException),
    SlowDownException(SlowDownException),
    UnauthorizedClientException(UnauthorizedClientException),
    UnsupportedGrantTypeException(UnsupportedGrantTypeException),
    Unhandled(Box<dyn Error + Send + Sync + 'static>),
}
Expand description

Types of errors that can occur for the CreateToken operation.

Variants (Non-exhaustive)

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.

AccessDeniedException(AccessDeniedException)

Tuple Fields

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)

Tuple Fields

Indicates that the token issued by the service is expired and is no longer valid.

InternalServerException(InternalServerException)

Tuple Fields

Indicates that an error from the service occurred while trying to process a request.

InvalidClientException(InvalidClientException)

Tuple Fields

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.

InvalidGrantException(InvalidGrantException)

Tuple Fields

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)

Tuple Fields

Indicates that something is wrong with the input to the request. For example, a required parameter might be missing or out of range.

InvalidScopeException(InvalidScopeException)

Tuple Fields

Indicates that the scope provided in the request is invalid.

SlowDownException(SlowDownException)

Tuple Fields

Indicates that the client is making the request too frequently and is more than the service can handle.

UnauthorizedClientException(UnauthorizedClientException)

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(Box<dyn Error + Send + Sync + 'static>)

Tuple Fields

0: Box<dyn Error + Send + Sync + 'static>

An unexpected error, e.g. invalid JSON returned by the service or an unknown error code

Trait Implementations

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

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