pub enum ModifyDBProxyTargetGroupError {
DBProxyNotFoundFault(String),
DBProxyTargetGroupNotFoundFault(String),
InvalidDBProxyStateFault(String),
}
Expand description
Errors returned by ModifyDBProxyTargetGroup
Variants§
DBProxyNotFoundFault(String)
The specified proxy name doesn't correspond to a proxy owned by your AWS accoutn in the specified AWS Region.
DBProxyTargetGroupNotFoundFault(String)
The specified target group isn't available for a proxy owned by your AWS account in the specified AWS Region.
InvalidDBProxyStateFault(String)
The requested operation can't be performed while the proxy is in this state.
Implementations§
Trait Implementations§
Source§impl Error for ModifyDBProxyTargetGroupError
impl Error for ModifyDBProxyTargetGroupError
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 ModifyDBProxyTargetGroupError
impl PartialEq for ModifyDBProxyTargetGroupError
Source§fn eq(&self, other: &ModifyDBProxyTargetGroupError) -> bool
fn eq(&self, other: &ModifyDBProxyTargetGroupError) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ModifyDBProxyTargetGroupError
Auto Trait Implementations§
impl Freeze for ModifyDBProxyTargetGroupError
impl RefUnwindSafe for ModifyDBProxyTargetGroupError
impl Send for ModifyDBProxyTargetGroupError
impl Sync for ModifyDBProxyTargetGroupError
impl Unpin for ModifyDBProxyTargetGroupError
impl UnwindSafe for ModifyDBProxyTargetGroupError
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