Enum rusoto_elasticache::ModifyReplicationGroupShardConfigurationError[][src]

pub enum ModifyReplicationGroupShardConfigurationError {
    InsufficientCacheClusterCapacityFault(String),
    InvalidCacheClusterStateFault(String),
    InvalidParameterCombination(String),
    InvalidParameterValue(String),
    InvalidReplicationGroupStateFault(String),
    InvalidVPCNetworkStateFault(String),
    NodeGroupsPerReplicationGroupQuotaExceededFault(String),
    NodeQuotaForCustomerExceededFault(String),
    ReplicationGroupNotFoundFault(String),
    HttpDispatch(HttpDispatchError),
    Credentials(CredentialsError),
    Validation(String),
    Unknown(String),
}

Errors returned by ModifyReplicationGroupShardConfiguration

Variants

The requested cache node type is not available in the specified Availability Zone.

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 VPC network is in an invalid state.

The request cannot be processed because it would exceed the maximum allowed number of node groups (shards) in a single replication group. The default maximum is 15

The request cannot be processed because it would exceed the allowed number of cache nodes per customer.

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

Trait Implementations

impl Debug for ModifyReplicationGroupShardConfigurationError
[src]

Formats the value using the given formatter. Read more

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

Performs the conversion.

impl From<CredentialsError> for ModifyReplicationGroupShardConfigurationError
[src]

Performs the conversion.

impl From<HttpDispatchError> for ModifyReplicationGroupShardConfigurationError
[src]

impl From<Error> for ModifyReplicationGroupShardConfigurationError
[src]

impl Display for ModifyReplicationGroupShardConfigurationError
[src]

Formats the value using the given formatter. Read more

impl Error for ModifyReplicationGroupShardConfigurationError
[src]

This method is soft-deprecated. Read more

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

Auto Trait Implementations