#[non_exhaustive]
pub enum ModifyAuthenticationProfileErrorKind {
AuthenticationProfileNotFoundFault(AuthenticationProfileNotFoundFault),
AuthenticationProfileQuotaExceededFault(AuthenticationProfileQuotaExceededFault),
InvalidAuthenticationProfileRequestFault(InvalidAuthenticationProfileRequestFault),
Unhandled(Unhandled),
}
Expand description
Types of errors that can occur for the ModifyAuthenticationProfile
operation.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
AuthenticationProfileNotFoundFault(AuthenticationProfileNotFoundFault)
The authentication profile can't be found.
AuthenticationProfileQuotaExceededFault(AuthenticationProfileQuotaExceededFault)
The size or number of authentication profiles has exceeded the quota. The maximum length of the JSON string and maximum number of authentication profiles is determined by a quota for your account.
InvalidAuthenticationProfileRequestFault(InvalidAuthenticationProfileRequestFault)
The authentication profile request is not valid. The profile name can't be null or empty. The authentication profile API operation must be available in the Amazon Web Services Region.
Unhandled(Unhandled)
An unexpected error occurred (e.g., invalid JSON returned by the service or an unknown error code).
When logging an error from the SDK, it is recommended that you either wrap the error in
DisplayErrorContext
, use another
error reporter library that visits the error’s cause/source chain, or call
Error::source
for more details about the underlying cause.