pub enum TestConnectionError {
InvalidResourceStateFault(String),
KMSKeyNotAccessibleFault(String),
ResourceNotFoundFault(String),
ResourceQuotaExceededFault(String),
}Expand description
Errors returned by TestConnection
Variants§
InvalidResourceStateFault(String)
The resource is in a state that prevents it from being used for database migration.
KMSKeyNotAccessibleFault(String)
AWS DMS cannot access the AWS KMS key.
ResourceNotFoundFault(String)
The resource could not be found.
ResourceQuotaExceededFault(String)
The quota for this resource quota has been exceeded.
Implementations§
Source§impl TestConnectionError
impl TestConnectionError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<TestConnectionError>
Trait Implementations§
Source§impl Debug for TestConnectionError
impl Debug for TestConnectionError
Source§impl Display for TestConnectionError
impl Display for TestConnectionError
Source§impl Error for TestConnectionError
impl Error for TestConnectionError
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 TestConnectionError
impl PartialEq for TestConnectionError
impl StructuralPartialEq for TestConnectionError
Auto Trait Implementations§
impl Freeze for TestConnectionError
impl RefUnwindSafe for TestConnectionError
impl Send for TestConnectionError
impl Sync for TestConnectionError
impl Unpin for TestConnectionError
impl UnwindSafe for TestConnectionError
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