pub struct AzureAttributes {
pub storage_account: String,
pub sas_token: String,
pub container: String,
pub compression: String,
pub file_type: String,
pub max_retry: i32,
pub retry_interval_sec: i32,
pub blob_prefix: Option<String>,
}Expand description
Configuration for delivering stream batches to Azure Blob Storage.
Fields§
§storage_account: StringAzure storage account name.
sas_token: StringSAS token used to authorize writes.
container: StringContainer that receives written blobs.
compression: StringCompression applied to written blobs (e.g. none, gzip).
file_type: StringFile format/extension for written blobs (e.g. .json).
max_retry: i32Maximum number of retry attempts for a failed write.
retry_interval_sec: i32Seconds to wait between retry attempts.
blob_prefix: Option<String>Optional name prefix prepended to each written blob.
Trait Implementations§
Source§impl Clone for AzureAttributes
impl Clone for AzureAttributes
Source§fn clone(&self) -> AzureAttributes
fn clone(&self) -> AzureAttributes
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AzureAttributes
impl Debug for AzureAttributes
Source§impl<'de> Deserialize<'de> for AzureAttributes
impl<'de> Deserialize<'de> for AzureAttributes
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
Auto Trait Implementations§
impl Freeze for AzureAttributes
impl RefUnwindSafe for AzureAttributes
impl Send for AzureAttributes
impl Sync for AzureAttributes
impl Unpin for AzureAttributes
impl UnsafeUnpin for AzureAttributes
impl UnwindSafe for AzureAttributes
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