pub enum UpdateClusterError {
ClusterNotFoundFault(String),
InvalidClusterStateFault(String),
InvalidParameterCombination(String),
InvalidParameterGroupStateFault(String),
InvalidParameterValue(String),
ParameterGroupNotFoundFault(String),
ServiceLinkedRoleNotFoundFault(String),
}
Expand description
Errors returned by UpdateCluster
Variants§
ClusterNotFoundFault(String)
The requested cluster ID does not refer to an existing DAX cluster.
InvalidClusterStateFault(String)
The requested DAX cluster is not in the available state.
InvalidParameterCombination(String)
Two or more incompatible parameters were specified.
InvalidParameterGroupStateFault(String)
One or more parameters in a parameter group are in an invalid state.
InvalidParameterValue(String)
The value for a parameter is invalid.
ParameterGroupNotFoundFault(String)
The specified parameter group does not exist.
ServiceLinkedRoleNotFoundFault(String)
The specified service linked role (SLR) was not found.
Implementations§
Source§impl UpdateClusterError
impl UpdateClusterError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<UpdateClusterError>
Trait Implementations§
Source§impl Debug for UpdateClusterError
impl Debug for UpdateClusterError
Source§impl Display for UpdateClusterError
impl Display for UpdateClusterError
Source§impl Error for UpdateClusterError
impl Error for UpdateClusterError
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 UpdateClusterError
impl PartialEq for UpdateClusterError
impl StructuralPartialEq for UpdateClusterError
Auto Trait Implementations§
impl Freeze for UpdateClusterError
impl RefUnwindSafe for UpdateClusterError
impl Send for UpdateClusterError
impl Sync for UpdateClusterError
impl Unpin for UpdateClusterError
impl UnwindSafe for UpdateClusterError
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