pub struct SqlServerSourceConfig {
pub cdc_start_position: Option<String>,
pub max_concurrent_cdc_connections: Option<i32>,
pub max_concurrent_full_dump_connections: Option<i32>,
pub skip_full_dump: Option<bool>,
}Expand description
Configuration for SQL Server as a source in a migration.
This type is not used in any activity, and only used as part of another schema.
Fields§
§cdc_start_position: Option<String>Optional. The log sequence number (LSN) to start CDC data migration from.
max_concurrent_cdc_connections: Option<i32>Optional. Maximum number of connections Database Migration Service will open to the source for CDC phase.
max_concurrent_full_dump_connections: Option<i32>Optional. Maximum number of connections Database Migration Service will open to the source for full dump phase.
skip_full_dump: Option<bool>Optional. Whether to skip full dump or not.
Trait Implementations§
Source§impl Clone for SqlServerSourceConfig
impl Clone for SqlServerSourceConfig
Source§fn clone(&self) -> SqlServerSourceConfig
fn clone(&self) -> SqlServerSourceConfig
Returns a duplicate 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 SqlServerSourceConfig
impl Debug for SqlServerSourceConfig
Source§impl Default for SqlServerSourceConfig
impl Default for SqlServerSourceConfig
Source§fn default() -> SqlServerSourceConfig
fn default() -> SqlServerSourceConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SqlServerSourceConfig
impl<'de> Deserialize<'de> for SqlServerSourceConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for SqlServerSourceConfig
impl Serialize for SqlServerSourceConfig
impl Part for SqlServerSourceConfig
Auto Trait Implementations§
impl Freeze for SqlServerSourceConfig
impl RefUnwindSafe for SqlServerSourceConfig
impl Send for SqlServerSourceConfig
impl Sync for SqlServerSourceConfig
impl Unpin for SqlServerSourceConfig
impl UnwindSafe for SqlServerSourceConfig
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