pub enum ModifyDBProxyError {
DBProxyAlreadyExistsFault(String),
DBProxyNotFoundFault(String),
InvalidDBProxyStateFault(String),
}
Expand description
Errors returned by ModifyDBProxy
Variants§
DBProxyAlreadyExistsFault(String)
The specified proxy name must be unique for all proxies owned by your AWS account in the specified AWS Region.
DBProxyNotFoundFault(String)
The specified proxy name doesn't correspond to a proxy owned by your AWS accoutn in the specified AWS Region.
InvalidDBProxyStateFault(String)
The requested operation can't be performed while the proxy is in this state.
Implementations§
Source§impl ModifyDBProxyError
impl ModifyDBProxyError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<ModifyDBProxyError>
Trait Implementations§
Source§impl Debug for ModifyDBProxyError
impl Debug for ModifyDBProxyError
Source§impl Display for ModifyDBProxyError
impl Display for ModifyDBProxyError
Source§impl Error for ModifyDBProxyError
impl Error for ModifyDBProxyError
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 ModifyDBProxyError
impl PartialEq for ModifyDBProxyError
impl StructuralPartialEq for ModifyDBProxyError
Auto Trait Implementations§
impl Freeze for ModifyDBProxyError
impl RefUnwindSafe for ModifyDBProxyError
impl Send for ModifyDBProxyError
impl Sync for ModifyDBProxyError
impl Unpin for ModifyDBProxyError
impl UnwindSafe for ModifyDBProxyError
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