pub struct DynamicsSink {
pub copy_sink: CopySink,
pub write_behavior: DynamicsSinkWriteBehavior,
pub ignore_null_values: Option<Value>,
pub alternate_key_name: Option<Value>,
}Expand description
A copy activity Dynamics sink.
Fields§
§copy_sink: CopySink§write_behavior: DynamicsSinkWriteBehaviorDefines values for DynamicsSinkWriteBehavior.
ignore_null_values: Option<Value>The flag indicating whether ignore null values from input dataset (except key fields) during write operation. Default is false. Type: boolean (or Expression with resultType boolean).
alternate_key_name: Option<Value>The logical name of the alternate key which will be used when upserting records. Type: string (or Expression with resultType string).
Implementations§
Source§impl DynamicsSink
impl DynamicsSink
pub fn new( copy_sink: CopySink, write_behavior: DynamicsSinkWriteBehavior, ) -> Self
Trait Implementations§
Source§impl Clone for DynamicsSink
impl Clone for DynamicsSink
Source§fn clone(&self) -> DynamicsSink
fn clone(&self) -> DynamicsSink
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 DynamicsSink
impl Debug for DynamicsSink
Source§impl<'de> Deserialize<'de> for DynamicsSink
impl<'de> Deserialize<'de> for DynamicsSink
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 PartialEq for DynamicsSink
impl PartialEq for DynamicsSink
Source§impl Serialize for DynamicsSink
impl Serialize for DynamicsSink
impl StructuralPartialEq for DynamicsSink
Auto Trait Implementations§
impl Freeze for DynamicsSink
impl RefUnwindSafe for DynamicsSink
impl Send for DynamicsSink
impl Sync for DynamicsSink
impl Unpin for DynamicsSink
impl UnwindSafe for DynamicsSink
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