pub enum CompleteMigrationError {
InvalidReplicationGroupStateFault(String),
ReplicationGroupNotFoundFault(String),
ReplicationGroupNotUnderMigrationFault(String),
}
Expand description
Errors returned by CompleteMigration
Variants§
InvalidReplicationGroupStateFault(String)
The requested replication group is not in the available
state.
ReplicationGroupNotFoundFault(String)
The specified replication group does not exist.
ReplicationGroupNotUnderMigrationFault(String)
The designated replication group is not available for data migration.
Implementations§
Source§impl CompleteMigrationError
impl CompleteMigrationError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<CompleteMigrationError>
Trait Implementations§
Source§impl Debug for CompleteMigrationError
impl Debug for CompleteMigrationError
Source§impl Display for CompleteMigrationError
impl Display for CompleteMigrationError
Source§impl Error for CompleteMigrationError
impl Error for CompleteMigrationError
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 CompleteMigrationError
impl PartialEq for CompleteMigrationError
impl StructuralPartialEq for CompleteMigrationError
Auto Trait Implementations§
impl Freeze for CompleteMigrationError
impl RefUnwindSafe for CompleteMigrationError
impl Send for CompleteMigrationError
impl Sync for CompleteMigrationError
impl Unpin for CompleteMigrationError
impl UnwindSafe for CompleteMigrationError
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