pub struct CompleteMigrationMessage {
pub force: Option<bool>,
pub replication_group_id: String,
}
Fields§
§force: Option<bool>
Forces the migration to stop without ensuring that data is in sync. It is recommended to use this option only to abort the migration and not recommended when application wants to continue migration to ElastiCache.
replication_group_id: String
The ID of the replication group to which data is being migrated.
Trait Implementations§
Source§impl Clone for CompleteMigrationMessage
impl Clone for CompleteMigrationMessage
Source§fn clone(&self) -> CompleteMigrationMessage
fn clone(&self) -> CompleteMigrationMessage
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for CompleteMigrationMessage
impl Debug for CompleteMigrationMessage
Source§impl Default for CompleteMigrationMessage
impl Default for CompleteMigrationMessage
Source§fn default() -> CompleteMigrationMessage
fn default() -> CompleteMigrationMessage
Returns the “default value” for a type. Read more
Source§impl PartialEq for CompleteMigrationMessage
impl PartialEq for CompleteMigrationMessage
impl StructuralPartialEq for CompleteMigrationMessage
Auto Trait Implementations§
impl Freeze for CompleteMigrationMessage
impl RefUnwindSafe for CompleteMigrationMessage
impl Send for CompleteMigrationMessage
impl Sync for CompleteMigrationMessage
impl Unpin for CompleteMigrationMessage
impl UnwindSafe for CompleteMigrationMessage
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