Enum rusoto_rds::DeleteDBClusterError[][src]

pub enum DeleteDBClusterError {
    DBClusterNotFoundFault(String),
    DBClusterSnapshotAlreadyExistsFault(String),
    InvalidDBClusterSnapshotStateFault(String),
    InvalidDBClusterStateFault(String),
    SnapshotQuotaExceededFault(String),
    HttpDispatch(HttpDispatchError),
    Credentials(CredentialsError),
    Validation(String),
    Unknown(String),
}

Errors returned by DeleteDBCluster

Variants

DBClusterIdentifier does not refer to an existing DB cluster.

User already has a DB cluster snapshot with the given identifier.

The supplied value is not a valid DB cluster snapshot state.

The DB cluster is not in a valid state.

Request would result in user exceeding the allowed number of DB snapshots.

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 DeleteDBClusterError
[src]

Trait Implementations

impl Debug for DeleteDBClusterError
[src]

Formats the value using the given formatter. Read more

impl PartialEq for DeleteDBClusterError
[src]

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

This method tests for !=.

impl From<XmlParseError> for DeleteDBClusterError
[src]

Performs the conversion.

impl From<CredentialsError> for DeleteDBClusterError
[src]

Performs the conversion.

impl From<HttpDispatchError> for DeleteDBClusterError
[src]

Performs the conversion.

impl From<Error> for DeleteDBClusterError
[src]

Performs the conversion.

impl Display for DeleteDBClusterError
[src]

Formats the value using the given formatter. Read more

impl Error for DeleteDBClusterError
[src]

This method is soft-deprecated. Read more

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

Auto Trait Implementations