#[non_exhaustive]pub struct SharedFileSystemConfiguration {
pub endpoint: Option<String>,
pub file_system_id: Option<String>,
pub linux_mount_point: Option<String>,
pub share_name: Option<String>,
pub windows_mount_drive: Option<String>,
}
Expand description
The configuration for a shared file storage system that is associated with a studio resource.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.endpoint: Option<String>
The endpoint of the shared file system that is accessed by the studio component resource.
file_system_id: Option<String>
The unique identifier for a file system.
linux_mount_point: Option<String>
The mount location for a shared file system on a Linux virtual workstation.
The name of the file share.
windows_mount_drive: Option<String>
The mount location for a shared file system on a Windows virtual workstation.
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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§fn eq(&self, other: &SharedFileSystemConfiguration) -> bool
fn eq(&self, other: &SharedFileSystemConfiguration) -> bool
self
and other
values to be equal, and is used
by ==
.