pub struct AzureTableSink {
pub copy_sink: CopySink,
pub azure_table_default_partition_key_value: Option<Value>,
pub azure_table_partition_key_name: Option<Value>,
pub azure_table_row_key_name: Option<Value>,
pub azure_table_insert_type: Option<Value>,
}Expand description
A copy activity Azure Table sink.
Fields§
§copy_sink: CopySink§azure_table_default_partition_key_value: Option<Value>Azure Table default partition key value. Type: string (or Expression with resultType string).
azure_table_partition_key_name: Option<Value>Azure Table partition key name. Type: string (or Expression with resultType string).
azure_table_row_key_name: Option<Value>Azure Table row key name. Type: string (or Expression with resultType string).
azure_table_insert_type: Option<Value>Azure Table insert type. Type: string (or Expression with resultType string).
Implementations§
Trait Implementations§
Source§impl Clone for AzureTableSink
impl Clone for AzureTableSink
Source§fn clone(&self) -> AzureTableSink
fn clone(&self) -> AzureTableSink
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 AzureTableSink
impl Debug for AzureTableSink
Source§impl<'de> Deserialize<'de> for AzureTableSink
impl<'de> Deserialize<'de> for AzureTableSink
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 AzureTableSink
impl PartialEq for AzureTableSink
Source§impl Serialize for AzureTableSink
impl Serialize for AzureTableSink
impl StructuralPartialEq for AzureTableSink
Auto Trait Implementations§
impl Freeze for AzureTableSink
impl RefUnwindSafe for AzureTableSink
impl Send for AzureTableSink
impl Sync for AzureTableSink
impl Unpin for AzureTableSink
impl UnwindSafe for AzureTableSink
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