Enum rusoto_elasticache::DeleteCacheClusterError [] [src]

pub enum DeleteCacheClusterError {
    CacheClusterNotFoundFault(String),
    InvalidCacheClusterStateFault(String),
    InvalidParameterCombination(String),
    InvalidParameterValue(String),
    SnapshotAlreadyExistsFault(String),
    SnapshotFeatureNotSupportedFault(String),
    SnapshotQuotaExceededFault(String),
    HttpDispatch(HttpDispatchError),
    Credentials(CredentialsError),
    Validation(String),
    Unknown(String),
}

Errors returned by DeleteCacheCluster

Variants

The requested cluster ID does not refer to an existing cluster.

The requested cluster is not in the available state.

Two or more incompatible parameters were specified.

The value for a parameter is invalid.

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

Trait Implementations

impl Debug for DeleteCacheClusterError
[src]

[src]

Formats the value using the given formatter. Read more

impl PartialEq for DeleteCacheClusterError
[src]

[src]

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

[src]

This method tests for !=.

impl From<XmlParseError> for DeleteCacheClusterError
[src]

[src]

Performs the conversion.

impl From<CredentialsError> for DeleteCacheClusterError
[src]

[src]

Performs the conversion.

impl From<HttpDispatchError> for DeleteCacheClusterError
[src]

[src]

Performs the conversion.

impl From<Error> for DeleteCacheClusterError
[src]

[src]

Performs the conversion.

impl Display for DeleteCacheClusterError
[src]

[src]

Formats the value using the given formatter. Read more

impl Error for DeleteCacheClusterError
[src]

[src]

A short description of the error. Read more

1.0.0
[src]

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

Auto Trait Implementations