#[non_exhaustive]
pub enum CreateDomainErrorKind {
BaseException(BaseException),
InternalException(InternalException),
LimitExceededException(LimitExceededException),
ResourceAlreadyExistsException(ResourceAlreadyExistsException),
ValidationException(ValidationException),
Unhandled(Unhandled),
}Expand description
Types of errors that can occur for the CreateDomain operation.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
BaseException(BaseException)
An error occurred while processing the request.
InternalException(InternalException)
An internal error occurred while processing the request. If this problem persists, report an issue from the Service Health Dashboard.
LimitExceededException(LimitExceededException)
The request was rejected because a resource limit has already been met.
ResourceAlreadyExistsException(ResourceAlreadyExistsException)
The request was rejected because it attempted to create a resource that already exists.
ValidationException(ValidationException)
The request was rejected because it has invalid parameters.
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.