pub enum TestFailoverError {
APICallRateForCustomerExceededFault(String),
InvalidCacheClusterStateFault(String),
InvalidKMSKeyFault(String),
InvalidParameterCombination(String),
InvalidParameterValue(String),
InvalidReplicationGroupStateFault(String),
NodeGroupNotFoundFault(String),
ReplicationGroupNotFoundFault(String),
TestFailoverNotAvailableFault(String),
}
Expand description
Errors returned by TestFailover
Variants§
APICallRateForCustomerExceededFault(String)
The customer has exceeded the allowed rate of API calls.
InvalidCacheClusterStateFault(String)
The requested cluster is not in the available
state.
InvalidKMSKeyFault(String)
The KMS key supplied is not valid.
InvalidParameterCombination(String)
Two or more incompatible parameters were specified.
InvalidParameterValue(String)
The value for a parameter is invalid.
InvalidReplicationGroupStateFault(String)
The requested replication group is not in the available
state.
NodeGroupNotFoundFault(String)
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.
ReplicationGroupNotFoundFault(String)
The specified replication group does not exist.
TestFailoverNotAvailableFault(String)
The TestFailover
action is not available.
Implementations§
Source§impl TestFailoverError
impl TestFailoverError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<TestFailoverError>
Trait Implementations§
Source§impl Debug for TestFailoverError
impl Debug for TestFailoverError
Source§impl Display for TestFailoverError
impl Display for TestFailoverError
Source§impl Error for TestFailoverError
impl Error for TestFailoverError
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 TestFailoverError
impl PartialEq for TestFailoverError
impl StructuralPartialEq for TestFailoverError
Auto Trait Implementations§
impl Freeze for TestFailoverError
impl RefUnwindSafe for TestFailoverError
impl Send for TestFailoverError
impl Sync for TestFailoverError
impl Unpin for TestFailoverError
impl UnwindSafe for TestFailoverError
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