pub enum CreateDBProxyError {
DBProxyAlreadyExistsFault(String),
DBProxyQuotaExceededFault(String),
InvalidSubnet(String),
}
Expand description
Errors returned by CreateDBProxy
Variants§
DBProxyAlreadyExistsFault(String)
The specified proxy name must be unique for all proxies owned by your AWS account in the specified AWS Region.
DBProxyQuotaExceededFault(String)
Your AWS account already has the maximum number of proxies in the specified AWS Region.
InvalidSubnet(String)
The requested subnet is invalid, or multiple subnets were requested that are not all in a common VPC.
Implementations§
Source§impl CreateDBProxyError
impl CreateDBProxyError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<CreateDBProxyError>
Trait Implementations§
Source§impl Debug for CreateDBProxyError
impl Debug for CreateDBProxyError
Source§impl Display for CreateDBProxyError
impl Display for CreateDBProxyError
Source§impl Error for CreateDBProxyError
impl Error for CreateDBProxyError
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 CreateDBProxyError
impl PartialEq for CreateDBProxyError
impl StructuralPartialEq for CreateDBProxyError
Auto Trait Implementations§
impl Freeze for CreateDBProxyError
impl RefUnwindSafe for CreateDBProxyError
impl Send for CreateDBProxyError
impl Sync for CreateDBProxyError
impl Unpin for CreateDBProxyError
impl UnwindSafe for CreateDBProxyError
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