pub enum ModifyClusterParameterGroupError {
ClusterParameterGroupNotFoundFault(String),
InvalidClusterParameterGroupStateFault(String),
}
Expand description
Errors returned by ModifyClusterParameterGroup
Variants§
ClusterParameterGroupNotFoundFault(String)
The parameter group name does not refer to an existing parameter group.
InvalidClusterParameterGroupStateFault(String)
The cluster parameter group action can not be completed because another task is in progress that involves the parameter group. Wait a few moments and try the operation again.
Implementations§
Trait Implementations§
Source§impl Error for ModifyClusterParameterGroupError
impl Error for ModifyClusterParameterGroupError
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 ModifyClusterParameterGroupError
impl PartialEq for ModifyClusterParameterGroupError
Source§fn eq(&self, other: &ModifyClusterParameterGroupError) -> bool
fn eq(&self, other: &ModifyClusterParameterGroupError) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ModifyClusterParameterGroupError
Auto Trait Implementations§
impl Freeze for ModifyClusterParameterGroupError
impl RefUnwindSafe for ModifyClusterParameterGroupError
impl Send for ModifyClusterParameterGroupError
impl Sync for ModifyClusterParameterGroupError
impl Unpin for ModifyClusterParameterGroupError
impl UnwindSafe for ModifyClusterParameterGroupError
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