Enum rusoto_elasticache::DeleteReplicationGroupError[][src]

pub enum DeleteReplicationGroupError {
    InvalidParameterCombination(String),
    InvalidParameterValue(String),
    InvalidReplicationGroupStateFault(String),
    ReplicationGroupNotFoundFault(String),
    SnapshotAlreadyExistsFault(String),
    SnapshotFeatureNotSupportedFault(String),
    SnapshotQuotaExceededFault(String),
    HttpDispatch(HttpDispatchError),
    Credentials(CredentialsError),
    Validation(String),
    Unknown(String),
}

Errors returned by DeleteReplicationGroup

Variants

Two or more incompatible parameters were specified.

The value for a parameter is invalid.

The requested replication group is not in the available state.

The specified replication group does not exist.

You already have a snapshot with the given name.

You attempted one of the following operations:

  • Creating a snapshot of a Redis cluster running on a cache.t1.micro cache node.

  • Creating a snapshot of a cluster that is running Memcached rather than Redis.

Neither of these are supported by ElastiCache.

The request cannot be processed because it would exceed the maximum number of 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 DeleteReplicationGroupError
[src]

Trait Implementations

impl Debug for DeleteReplicationGroupError
[src]

Formats the value using the given formatter. Read more

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

Performs the conversion.

impl From<CredentialsError> for DeleteReplicationGroupError
[src]

Performs the conversion.

impl From<HttpDispatchError> for DeleteReplicationGroupError
[src]

Performs the conversion.

impl From<Error> for DeleteReplicationGroupError
[src]

Performs the conversion.

impl Display for DeleteReplicationGroupError
[src]

Formats the value using the given formatter. Read more

impl Error for DeleteReplicationGroupError
[src]

This method is soft-deprecated. Read more

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

Auto Trait Implementations