Enum rusoto_rds::CopyDBSnapshotError[][src]

pub enum CopyDBSnapshotError {
    DBSnapshotAlreadyExistsFault(String),
    DBSnapshotNotFoundFault(String),
    InvalidDBSnapshotStateFault(String),
    KMSKeyNotAccessibleFault(String),
    SnapshotQuotaExceededFault(String),
    HttpDispatch(HttpDispatchError),
    Credentials(CredentialsError),
    Validation(String),
    Unknown(String),
}

Errors returned by CopyDBSnapshot

Variants

DBSnapshotIdentifier is already used by an existing snapshot.

DBSnapshotIdentifier does not refer to an existing DB snapshot.

The state of the DB snapshot does not allow deletion.

Error accessing KMS key.

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

Trait Implementations

impl Debug for CopyDBSnapshotError
[src]

Formats the value using the given formatter. Read more

impl PartialEq for CopyDBSnapshotError
[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 CopyDBSnapshotError
[src]

Performs the conversion.

impl From<CredentialsError> for CopyDBSnapshotError
[src]

Performs the conversion.

impl From<HttpDispatchError> for CopyDBSnapshotError
[src]

Performs the conversion.

impl From<Error> for CopyDBSnapshotError
[src]

Performs the conversion.

impl Display for CopyDBSnapshotError
[src]

Formats the value using the given formatter. Read more

impl Error for CopyDBSnapshotError
[src]

This method is soft-deprecated. Read more

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

Auto Trait Implementations