Enum rusoto_elasticache::TestFailoverError [] [src]

pub enum TestFailoverError {
    APICallRateForCustomerExceededFault(String),
    InvalidCacheClusterStateFault(String),
    InvalidParameterCombination(String),
    InvalidParameterValue(String),
    InvalidReplicationGroupStateFault(String),
    NodeGroupNotFoundFault(String),
    ReplicationGroupNotFoundFault(String),
    TestFailoverNotAvailableFault(String),
    HttpDispatch(HttpDispatchError),
    Credentials(CredentialsError),
    Validation(String),
    Unknown(String),
}

Errors returned by TestFailover

Variants

The customer has exceeded the allowed rate of API calls.

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 node group specified by the NodeGroupId parameter could not be found. Please verify that the node group exists and that you spelled the NodeGroupId value correctly.

The specified replication group does not exist.

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

Trait Implementations

impl Debug for TestFailoverError
[src]

[src]

Formats the value using the given formatter. Read more

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

[src]

Performs the conversion.

impl From<CredentialsError> for TestFailoverError
[src]

[src]

Performs the conversion.

impl From<HttpDispatchError> for TestFailoverError
[src]

[src]

Performs the conversion.

impl From<Error> for TestFailoverError
[src]

[src]

Performs the conversion.

impl Display for TestFailoverError
[src]

[src]

Formats the value using the given formatter. Read more

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