pub struct StartMigrationMessage {
pub customer_node_endpoint_list: Vec<CustomerNodeEndpoint>,
pub replication_group_id: String,
}
Fields§
§customer_node_endpoint_list: Vec<CustomerNodeEndpoint>
List of endpoints from which data should be migrated. For Redis (cluster mode disabled), list should have only one element.
replication_group_id: String
The ID of the replication group to which data should be migrated.
Trait Implementations§
Source§impl Clone for StartMigrationMessage
impl Clone for StartMigrationMessage
Source§fn clone(&self) -> StartMigrationMessage
fn clone(&self) -> StartMigrationMessage
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 StartMigrationMessage
impl Debug for StartMigrationMessage
Source§impl Default for StartMigrationMessage
impl Default for StartMigrationMessage
Source§fn default() -> StartMigrationMessage
fn default() -> StartMigrationMessage
Returns the “default value” for a type. Read more
Source§impl PartialEq for StartMigrationMessage
impl PartialEq for StartMigrationMessage
impl StructuralPartialEq for StartMigrationMessage
Auto Trait Implementations§
impl Freeze for StartMigrationMessage
impl RefUnwindSafe for StartMigrationMessage
impl Send for StartMigrationMessage
impl Sync for StartMigrationMessage
impl Unpin for StartMigrationMessage
impl UnwindSafe for StartMigrationMessage
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