pub enum CreateReplicationTaskError {
AccessDeniedFault(String),
InvalidResourceStateFault(String),
KMSKeyNotAccessibleFault(String),
ResourceAlreadyExistsFault(String),
ResourceNotFoundFault(String),
ResourceQuotaExceededFault(String),
}Expand description
Errors returned by CreateReplicationTask
Variants§
AccessDeniedFault(String)
AWS DMS was denied access to the endpoint. Check that the role is correctly configured.
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.
ResourceAlreadyExistsFault(String)
The resource you are attempting to create already exists.
ResourceNotFoundFault(String)
The resource could not be found.
ResourceQuotaExceededFault(String)
The quota for this resource quota has been exceeded.
Implementations§
Source§impl CreateReplicationTaskError
impl CreateReplicationTaskError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<CreateReplicationTaskError>
Trait Implementations§
Source§impl Debug for CreateReplicationTaskError
impl Debug for CreateReplicationTaskError
Source§impl Display for CreateReplicationTaskError
impl Display for CreateReplicationTaskError
Source§impl Error for CreateReplicationTaskError
impl Error for CreateReplicationTaskError
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()
impl StructuralPartialEq for CreateReplicationTaskError
Auto Trait Implementations§
impl Freeze for CreateReplicationTaskError
impl RefUnwindSafe for CreateReplicationTaskError
impl Send for CreateReplicationTaskError
impl Sync for CreateReplicationTaskError
impl Unpin for CreateReplicationTaskError
impl UnwindSafe for CreateReplicationTaskError
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