pub enum DeleteClusterParameterGroupError {
ClusterParameterGroupNotFoundFault(String),
InvalidClusterParameterGroupStateFault(String),
}
Expand description
Errors returned by DeleteClusterParameterGroup
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 DeleteClusterParameterGroupError
impl Error for DeleteClusterParameterGroupError
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 DeleteClusterParameterGroupError
impl PartialEq for DeleteClusterParameterGroupError
Source§fn eq(&self, other: &DeleteClusterParameterGroupError) -> bool
fn eq(&self, other: &DeleteClusterParameterGroupError) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DeleteClusterParameterGroupError
Auto Trait Implementations§
impl Freeze for DeleteClusterParameterGroupError
impl RefUnwindSafe for DeleteClusterParameterGroupError
impl Send for DeleteClusterParameterGroupError
impl Sync for DeleteClusterParameterGroupError
impl Unpin for DeleteClusterParameterGroupError
impl UnwindSafe for DeleteClusterParameterGroupError
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