#[non_exhaustive]
pub enum CreateServiceSpecificCredentialErrorKind {
LimitExceededException(LimitExceededException),
NoSuchEntityException(NoSuchEntityException),
ServiceNotSupportedException(ServiceNotSupportedException),
Unhandled(Unhandled),
}Expand description
Types of errors that can occur for the CreateServiceSpecificCredential operation.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
LimitExceededException(LimitExceededException)
The request was rejected because it attempted to create resources beyond the current Amazon Web Services account limits. The error message describes the limit exceeded.
NoSuchEntityException(NoSuchEntityException)
The request was rejected because it referenced a resource entity that does not exist. The error message describes the resource.
ServiceNotSupportedException(ServiceNotSupportedException)
The specified service does not support service-specific credentials.
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.