pub enum CopyDBClusterParameterGroupError {
DBParameterGroupAlreadyExistsFault(String),
DBParameterGroupNotFoundFault(String),
DBParameterGroupQuotaExceededFault(String),
}
Expand description
Errors returned by CopyDBClusterParameterGroup
Variants§
DBParameterGroupAlreadyExistsFault(String)
A parameter group with the same name already exists.
DBParameterGroupNotFoundFault(String)
DBParameterGroupName
doesn't refer to an existing parameter group.
DBParameterGroupQuotaExceededFault(String)
This request would cause you to exceed the allowed number of parameter groups.
Implementations§
Trait Implementations§
Source§impl Error for CopyDBClusterParameterGroupError
impl Error for CopyDBClusterParameterGroupError
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 CopyDBClusterParameterGroupError
impl PartialEq for CopyDBClusterParameterGroupError
Source§fn eq(&self, other: &CopyDBClusterParameterGroupError) -> bool
fn eq(&self, other: &CopyDBClusterParameterGroupError) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for CopyDBClusterParameterGroupError
Auto Trait Implementations§
impl Freeze for CopyDBClusterParameterGroupError
impl RefUnwindSafe for CopyDBClusterParameterGroupError
impl Send for CopyDBClusterParameterGroupError
impl Sync for CopyDBClusterParameterGroupError
impl Unpin for CopyDBClusterParameterGroupError
impl UnwindSafe for CopyDBClusterParameterGroupError
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