pub enum ModifyReplicationInstanceError {
AccessDeniedFault(String),
InsufficientResourceCapacityFault(String),
InvalidResourceStateFault(String),
ResourceAlreadyExistsFault(String),
ResourceNotFoundFault(String),
StorageQuotaExceededFault(String),
UpgradeDependencyFailureFault(String),
}Expand description
Errors returned by ModifyReplicationInstance
Variants§
AccessDeniedFault(String)
AWS DMS was denied access to the endpoint. Check that the role is correctly configured.
InsufficientResourceCapacityFault(String)
There are not enough resources allocated to the database migration.
InvalidResourceStateFault(String)
The resource is in a state that prevents it from being used for database migration.
ResourceAlreadyExistsFault(String)
The resource you are attempting to create already exists.
ResourceNotFoundFault(String)
The resource could not be found.
StorageQuotaExceededFault(String)
The storage quota has been exceeded.
UpgradeDependencyFailureFault(String)
An upgrade dependency is preventing the database migration.
Implementations§
Trait Implementations§
Source§impl Error for ModifyReplicationInstanceError
impl Error for ModifyReplicationInstanceError
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 ModifyReplicationInstanceError
impl PartialEq for ModifyReplicationInstanceError
Source§fn eq(&self, other: &ModifyReplicationInstanceError) -> bool
fn eq(&self, other: &ModifyReplicationInstanceError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ModifyReplicationInstanceError
Auto Trait Implementations§
impl Freeze for ModifyReplicationInstanceError
impl RefUnwindSafe for ModifyReplicationInstanceError
impl Send for ModifyReplicationInstanceError
impl Sync for ModifyReplicationInstanceError
impl Unpin for ModifyReplicationInstanceError
impl UnwindSafe for ModifyReplicationInstanceError
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