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