pub struct OracleSourceConfig {
pub binary_log_parser: Option<BinaryLogParser>,
pub cdc_start_position: Option<i64>,
pub log_miner: Option<LogMiner>,
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 Oracle as a source in a migration.
This type is not used in any activity, and only used as part of another schema.
Fields§
§binary_log_parser: Option<BinaryLogParser>Use Binary Log Parser.
cdc_start_position: Option<i64>Optional. The schema change number (SCN) to start CDC data migration from.
log_miner: Option<LogMiner>Use LogMiner.
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 OracleSourceConfig
impl Clone for OracleSourceConfig
Source§fn clone(&self) -> OracleSourceConfig
fn clone(&self) -> OracleSourceConfig
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 OracleSourceConfig
impl Debug for OracleSourceConfig
Source§impl Default for OracleSourceConfig
impl Default for OracleSourceConfig
Source§fn default() -> OracleSourceConfig
fn default() -> OracleSourceConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OracleSourceConfig
impl<'de> Deserialize<'de> for OracleSourceConfig
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 OracleSourceConfig
impl Serialize for OracleSourceConfig
impl Part for OracleSourceConfig
Auto Trait Implementations§
impl Freeze for OracleSourceConfig
impl RefUnwindSafe for OracleSourceConfig
impl Send for OracleSourceConfig
impl Sync for OracleSourceConfig
impl Unpin for OracleSourceConfig
impl UnwindSafe for OracleSourceConfig
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