pub struct CopySink {
pub write_batch_size: Option<Value>,
pub write_batch_timeout: Option<Value>,
pub sink_retry_count: Option<Value>,
pub sink_retry_wait: Option<Value>,
pub max_concurrent_connections: Option<Value>,
pub disable_metrics_collection: Option<Value>,
}Expand description
A copy activity sink.
Fields§
§write_batch_size: Option<Value>Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
write_batch_timeout: Option<Value>Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
sink_retry_count: Option<Value>Sink retry count. Type: integer (or Expression with resultType integer).
sink_retry_wait: Option<Value>Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
max_concurrent_connections: Option<Value>The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
disable_metrics_collection: Option<Value>If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for CopySink
impl<'de> Deserialize<'de> for CopySink
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
impl StructuralPartialEq for CopySink
Auto Trait Implementations§
impl Freeze for CopySink
impl RefUnwindSafe for CopySink
impl Send for CopySink
impl Sync for CopySink
impl Unpin for CopySink
impl UnwindSafe for CopySink
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