pub struct AzureBlobStorageBucketPlan {
pub connection_string: String,
pub container_name: String,
pub path: Option<String>,
}
Fields§
§connection_string: String
This is the blob storage connection string for the Azure resource.
container_name: String
This is the container name for the Azure blob storage.
path: Option<String>
This is the path where call artifacts will be stored. Usage: - To store call artifacts in a specific folder, set this to the full path. Eg. "/folder-name1/folder-name2". - To store call artifacts in the root of the bucket, leave this blank. @default "/"
Implementations§
Source§impl AzureBlobStorageBucketPlan
impl AzureBlobStorageBucketPlan
pub fn new( connection_string: String, container_name: String, ) -> AzureBlobStorageBucketPlan
Trait Implementations§
Source§impl Clone for AzureBlobStorageBucketPlan
impl Clone for AzureBlobStorageBucketPlan
Source§fn clone(&self) -> AzureBlobStorageBucketPlan
fn clone(&self) -> AzureBlobStorageBucketPlan
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for AzureBlobStorageBucketPlan
impl Debug for AzureBlobStorageBucketPlan
Source§impl Default for AzureBlobStorageBucketPlan
impl Default for AzureBlobStorageBucketPlan
Source§fn default() -> AzureBlobStorageBucketPlan
fn default() -> AzureBlobStorageBucketPlan
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AzureBlobStorageBucketPlan
impl<'de> Deserialize<'de> for AzureBlobStorageBucketPlan
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 AzureBlobStorageBucketPlan
Auto Trait Implementations§
impl Freeze for AzureBlobStorageBucketPlan
impl RefUnwindSafe for AzureBlobStorageBucketPlan
impl Send for AzureBlobStorageBucketPlan
impl Sync for AzureBlobStorageBucketPlan
impl Unpin for AzureBlobStorageBucketPlan
impl UnwindSafe for AzureBlobStorageBucketPlan
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