Enum rusoto_elasticache::CreateSnapshotError [] [src]

pub enum CreateSnapshotError {
    CacheClusterNotFoundFault(String),
    InvalidCacheClusterStateFault(String),
    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 CreateSnapshot

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.

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

Trait Implementations

impl Debug for CreateSnapshotError
[src]

[src]

Formats the value using the given formatter. Read more

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

[src]

Performs the conversion.

impl From<CredentialsError> for CreateSnapshotError
[src]

[src]

Performs the conversion.

impl From<HttpDispatchError> for CreateSnapshotError
[src]

[src]

Performs the conversion.

impl From<Error> for CreateSnapshotError
[src]

[src]

Performs the conversion.

impl Display for CreateSnapshotError
[src]

[src]

Formats the value using the given formatter. Read more

impl Error for CreateSnapshotError
[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