pub struct MongodbSourceConfig {
pub exclude_objects: Option<MongodbCluster>,
pub include_objects: Option<MongodbCluster>,
pub json_mode: Option<String>,
pub max_concurrent_backfill_tasks: Option<i32>,
}Expand description
MongoDB source configuration.
This type is not used in any activity, and only used as part of another schema.
Fields§
§exclude_objects: Option<MongodbCluster>MongoDB collections to exclude from the stream.
include_objects: Option<MongodbCluster>MongoDB collections to include in the stream.
json_mode: Option<String>Optional. MongoDB JSON mode to use for the stream.
max_concurrent_backfill_tasks: Option<i32>Optional. Maximum number of concurrent backfill tasks. The number should be non-negative and less than or equal to 50. If not set (or set to 0), the system’s default value is used
Trait Implementations§
Source§impl Clone for MongodbSourceConfig
impl Clone for MongodbSourceConfig
Source§fn clone(&self) -> MongodbSourceConfig
fn clone(&self) -> MongodbSourceConfig
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 MongodbSourceConfig
impl Debug for MongodbSourceConfig
Source§impl Default for MongodbSourceConfig
impl Default for MongodbSourceConfig
Source§fn default() -> MongodbSourceConfig
fn default() -> MongodbSourceConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MongodbSourceConfig
impl<'de> Deserialize<'de> for MongodbSourceConfig
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 MongodbSourceConfig
impl Serialize for MongodbSourceConfig
impl Part for MongodbSourceConfig
Auto Trait Implementations§
impl Freeze for MongodbSourceConfig
impl RefUnwindSafe for MongodbSourceConfig
impl Send for MongodbSourceConfig
impl Sync for MongodbSourceConfig
impl Unpin for MongodbSourceConfig
impl UnwindSafe for MongodbSourceConfig
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