Enum rusoto_dms::ModifyReplicationInstanceError[][src]

pub enum ModifyReplicationInstanceError {
    InsufficientResourceCapacityFault(String),
    InvalidResourceStateFault(String),
    ResourceAlreadyExistsFault(String),
    ResourceNotFoundFault(String),
    StorageQuotaExceededFault(String),
    UpgradeDependencyFailureFault(String),
    HttpDispatch(HttpDispatchError),
    Credentials(CredentialsError),
    Validation(String),
    Unknown(String),
}

Errors returned by ModifyReplicationInstance

Variants

There are not enough resources allocated to the database migration.

The resource is in a state that prevents it from being used for database migration.

The resource you are attempting to create already exists.

The resource could not be found.

The storage quota has been exceeded.

An upgrade dependency is preventing the database migration.

An error occurred dispatching the HTTP request

An error was encountered with AWS credentials.

A validation error occurred. Details from AWS are provided.

An unknown error occurred. The raw HTTP response is provided.

Methods

impl ModifyReplicationInstanceError
[src]

Trait Implementations

impl Debug for ModifyReplicationInstanceError
[src]

Formats the value using the given formatter. Read more

impl PartialEq for ModifyReplicationInstanceError
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl From<Error> for ModifyReplicationInstanceError
[src]

Performs the conversion.

impl From<CredentialsError> for ModifyReplicationInstanceError
[src]

Performs the conversion.

impl From<HttpDispatchError> for ModifyReplicationInstanceError
[src]

Performs the conversion.

impl From<Error> for ModifyReplicationInstanceError
[src]

Performs the conversion.

impl Display for ModifyReplicationInstanceError
[src]

Formats the value using the given formatter. Read more

impl Error for ModifyReplicationInstanceError
[src]

This method is soft-deprecated. Read more

The lower-level cause of this error, if any. Read more

Auto Trait Implementations