pub enum IncreaseReplicationFactorError {
ClusterNotFoundFault(String),
InsufficientClusterCapacityFault(String),
InvalidClusterStateFault(String),
InvalidParameterCombination(String),
InvalidParameterValue(String),
InvalidVPCNetworkStateFault(String),
NodeQuotaForClusterExceededFault(String),
NodeQuotaForCustomerExceededFault(String),
ServiceLinkedRoleNotFoundFault(String),
}
Expand description
Errors returned by IncreaseReplicationFactor
Variants§
ClusterNotFoundFault(String)
The requested cluster ID does not refer to an existing DAX cluster.
InsufficientClusterCapacityFault(String)
There are not enough system resources to create the cluster you requested (or to resize an already-existing cluster).
InvalidClusterStateFault(String)
The requested DAX cluster is not in the available state.
InvalidParameterCombination(String)
Two or more incompatible parameters were specified.
InvalidParameterValue(String)
The value for a parameter is invalid.
InvalidVPCNetworkStateFault(String)
The VPC network is in an invalid state.
NodeQuotaForClusterExceededFault(String)
You have attempted to exceed the maximum number of nodes for a DAX cluster.
NodeQuotaForCustomerExceededFault(String)
You have attempted to exceed the maximum number of nodes for your AWS account.
ServiceLinkedRoleNotFoundFault(String)
The specified service linked role (SLR) was not found.
Implementations§
Trait Implementations§
Source§impl Error for IncreaseReplicationFactorError
impl Error for IncreaseReplicationFactorError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl PartialEq for IncreaseReplicationFactorError
impl PartialEq for IncreaseReplicationFactorError
Source§fn eq(&self, other: &IncreaseReplicationFactorError) -> bool
fn eq(&self, other: &IncreaseReplicationFactorError) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for IncreaseReplicationFactorError
Auto Trait Implementations§
impl Freeze for IncreaseReplicationFactorError
impl RefUnwindSafe for IncreaseReplicationFactorError
impl Send for IncreaseReplicationFactorError
impl Sync for IncreaseReplicationFactorError
impl Unpin for IncreaseReplicationFactorError
impl UnwindSafe for IncreaseReplicationFactorError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more