Enum rusoto_dax::IncreaseReplicationFactorError [] [src]

pub enum IncreaseReplicationFactorError {
    ClusterNotFoundFault(String),
    InsufficientClusterCapacityFault(String),
    InvalidClusterStateFault(String),
    InvalidParameterCombination(String),
    InvalidParameterValue(String),
    InvalidVPCNetworkStateFault(String),
    NodeQuotaForClusterExceededFault(String),
    NodeQuotaForCustomerExceededFault(String),
    HttpDispatch(HttpDispatchError),
    Credentials(CredentialsError),
    Validation(String),
    Unknown(String),
}

Errors returned by IncreaseReplicationFactor

Variants

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

There are not enough system resources to create the cluster you requested (or to resize an already-existing cluster).

The requested DAX cluster is not in the available state.

Two or more incompatible parameters were specified.

The value for a parameter is invalid.

The VPC network is in an invalid state.

You have attempted to exceed the maximum number of nodes for a DAX cluster.

You have attempted to exceed the maximum number of nodes for your AWS account.

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

Trait Implementations

impl Debug for IncreaseReplicationFactorError
[src]

[src]

Formats the value using the given formatter. Read more

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

[src]

Performs the conversion.

impl From<CredentialsError> for IncreaseReplicationFactorError
[src]

[src]

Performs the conversion.

impl From<HttpDispatchError> for IncreaseReplicationFactorError
[src]

[src]

Performs the conversion.

impl From<Error> for IncreaseReplicationFactorError
[src]

[src]

Performs the conversion.

impl Display for IncreaseReplicationFactorError
[src]

[src]

Formats the value using the given formatter. Read more

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