#[non_exhaustive]
pub enum Error {
Show 38 variants AccessDeniedException(AccessDeniedException), AuthenticationFailedException(AuthenticationFailedException), CertificateAlreadyExistsException(CertificateAlreadyExistsException), CertificateDoesNotExistException(CertificateDoesNotExistException), CertificateInUseException(CertificateInUseException), CertificateLimitExceededException(CertificateLimitExceededException), ClientException(ClientException), DirectoryAlreadyInRegionException(DirectoryAlreadyInRegionException), DirectoryAlreadySharedException(DirectoryAlreadySharedException), DirectoryDoesNotExistException(DirectoryDoesNotExistException), DirectoryInDesiredStateException(DirectoryInDesiredStateException), DirectoryLimitExceededException(DirectoryLimitExceededException), DirectoryNotSharedException(DirectoryNotSharedException), DirectoryUnavailableException(DirectoryUnavailableException), DomainControllerLimitExceededException(DomainControllerLimitExceededException), EntityAlreadyExistsException(EntityAlreadyExistsException), EntityDoesNotExistException(EntityDoesNotExistException), IncompatibleSettingsException(IncompatibleSettingsException), InsufficientPermissionsException(InsufficientPermissionsException), InvalidCertificateException(InvalidCertificateException), InvalidClientAuthStatusException(InvalidClientAuthStatusException), InvalidLdapsStatusException(InvalidLdapsStatusException), InvalidNextTokenException(InvalidNextTokenException), InvalidParameterException(InvalidParameterException), InvalidPasswordException(InvalidPasswordException), InvalidTargetException(InvalidTargetException), IpRouteLimitExceededException(IpRouteLimitExceededException), NoAvailableCertificateException(NoAvailableCertificateException), OrganizationsException(OrganizationsException), RegionLimitExceededException(RegionLimitExceededException), ServiceException(ServiceException), ShareLimitExceededException(ShareLimitExceededException), SnapshotLimitExceededException(SnapshotLimitExceededException), TagLimitExceededException(TagLimitExceededException), UnsupportedOperationException(UnsupportedOperationException), UnsupportedSettingsException(UnsupportedSettingsException), UserDoesNotExistException(UserDoesNotExistException), Unhandled(Unhandled),
}
Expand description

All possible error types for this service.

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)

Client authentication is not available in this region at this time.

§

AuthenticationFailedException(AuthenticationFailedException)

An authentication error occurred.

§

CertificateAlreadyExistsException(CertificateAlreadyExistsException)

The certificate has already been registered into the system.

§

CertificateDoesNotExistException(CertificateDoesNotExistException)

The certificate is not present in the system for describe or deregister activities.

§

CertificateInUseException(CertificateInUseException)

The certificate is being used for the LDAP security connection and cannot be removed without disabling LDAP security.

§

CertificateLimitExceededException(CertificateLimitExceededException)

The certificate could not be added because the certificate limit has been reached.

§

ClientException(ClientException)

A client exception has occurred.

§

DirectoryAlreadyInRegionException(DirectoryAlreadyInRegionException)

The Region you specified is the same Region where the Managed Microsoft AD directory was created. Specify a different Region and try again.

§

DirectoryAlreadySharedException(DirectoryAlreadySharedException)

The specified directory has already been shared with this Amazon Web Services account.

§

DirectoryDoesNotExistException(DirectoryDoesNotExistException)

The specified directory does not exist in the system.

§

DirectoryInDesiredStateException(DirectoryInDesiredStateException)

The directory is already updated to desired update type settings.

§

DirectoryLimitExceededException(DirectoryLimitExceededException)

The maximum number of directories in the region has been reached. You can use the GetDirectoryLimits operation to determine your directory limits in the region.

§

DirectoryNotSharedException(DirectoryNotSharedException)

The specified directory has not been shared with this Amazon Web Services account.

§

DirectoryUnavailableException(DirectoryUnavailableException)

The specified directory is unavailable or could not be found.

§

DomainControllerLimitExceededException(DomainControllerLimitExceededException)

The maximum allowed number of domain controllers per directory was exceeded. The default limit per directory is 20 domain controllers.

§

EntityAlreadyExistsException(EntityAlreadyExistsException)

The specified entity already exists.

§

EntityDoesNotExistException(EntityDoesNotExistException)

The specified entity could not be found.

§

IncompatibleSettingsException(IncompatibleSettingsException)

The specified directory setting is not compatible with other settings.

§

InsufficientPermissionsException(InsufficientPermissionsException)

The account does not have sufficient permission to perform the operation.

§

InvalidCertificateException(InvalidCertificateException)

The certificate PEM that was provided has incorrect encoding.

§

InvalidClientAuthStatusException(InvalidClientAuthStatusException)

Client authentication is already enabled.

§

InvalidLdapsStatusException(InvalidLdapsStatusException)

The LDAP activities could not be performed because they are limited by the LDAPS status.

§

InvalidNextTokenException(InvalidNextTokenException)

The NextToken value is not valid.

§

InvalidParameterException(InvalidParameterException)

One or more parameters are not valid.

§

InvalidPasswordException(InvalidPasswordException)

The new password provided by the user does not meet the password complexity requirements defined in your directory.

§

InvalidTargetException(InvalidTargetException)

The specified shared target is not valid.

§

IpRouteLimitExceededException(IpRouteLimitExceededException)

The maximum allowed number of IP addresses was exceeded. The default limit is 100 IP address blocks.

§

NoAvailableCertificateException(NoAvailableCertificateException)

Client authentication setup could not be completed because at least one valid certificate must be registered in the system.

§

OrganizationsException(OrganizationsException)

Exception encountered while trying to access your Amazon Web Services organization.

§

RegionLimitExceededException(RegionLimitExceededException)

You have reached the limit for maximum number of simultaneous Region replications per directory.

§

ServiceException(ServiceException)

An exception has occurred in Directory Service.

§

ShareLimitExceededException(ShareLimitExceededException)

The maximum number of Amazon Web Services accounts that you can share with this directory has been reached.

§

SnapshotLimitExceededException(SnapshotLimitExceededException)

The maximum number of manual snapshots for the directory has been reached. You can use the GetSnapshotLimits operation to determine the snapshot limits for a directory.

§

TagLimitExceededException(TagLimitExceededException)

The maximum allowed number of tags was exceeded.

§

UnsupportedOperationException(UnsupportedOperationException)

The operation is not supported.

§

UnsupportedSettingsException(UnsupportedSettingsException)

The specified directory setting is not supported.

§

UserDoesNotExistException(UserDoesNotExistException)

The user provided a username that does not exist in your directory.

§

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.

Trait Implementations§

Formats the value using the given formatter. Read more
Formats the value using the given formatter. Read more
The lower-level source of this error, if any. Read more
👎Deprecated since 1.42.0: use the Display impl or to_string()
👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.

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

Returns the argument unchanged.

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

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

🔬This is a nightly-only experimental API. (provide_any)
Data providers should implement this method to provide all values they are able to provide by using demand. Read more
Should always be Self
Converts the given value to a String. Read more
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