#[non_exhaustive]pub struct SharedFileSystemConfiguration { /* private fields */ }Expand description
The configuration for a shared file storage system that is associated with a studio resource.
Implementations§
sourcepub fn endpoint(&self) -> Option<&str>
pub fn endpoint(&self) -> Option<&str>
The endpoint of the shared file system that is accessed by the studio component resource.
sourcepub fn file_system_id(&self) -> Option<&str>
pub fn file_system_id(&self) -> Option<&str>
The unique identifier for a file system.
sourcepub fn linux_mount_point(&self) -> Option<&str>
pub fn linux_mount_point(&self) -> Option<&str>
The mount location for a shared file system on a Linux virtual workstation.
The name of the file share.
sourcepub fn windows_mount_drive(&self) -> Option<&str>
pub fn windows_mount_drive(&self) -> Option<&str>
The mount location for a shared file system on a Windows virtual workstation.
sourcepub fn builder() -> SharedFileSystemConfigurationBuilder
pub fn builder() -> SharedFileSystemConfigurationBuilder
Creates a new builder-style object to manufacture SharedFileSystemConfiguration.
Trait Implementations§
source§fn clone(&self) -> SharedFileSystemConfiguration
fn clone(&self) -> SharedFileSystemConfiguration
Returns a copy 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§fn eq(&self, other: &SharedFileSystemConfiguration) -> bool
fn eq(&self, other: &SharedFileSystemConfiguration) -> bool
This method tests for
self and other values to be equal, and is used
by ==.Auto Trait Implementations§
Blanket Implementations§
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more