#[non_exhaustive]pub struct SharedFileSystemConfigurationBuilder { /* private fields */ }
Expand description
A builder for SharedFileSystemConfiguration
.
Implementations§
sourcepub fn endpoint(self, input: impl Into<String>) -> Self
pub fn endpoint(self, input: impl Into<String>) -> Self
The endpoint of the shared file system that is accessed by the studio component resource.
sourcepub fn set_endpoint(self, input: Option<String>) -> Self
pub fn set_endpoint(self, input: Option<String>) -> Self
The endpoint of the shared file system that is accessed by the studio component resource.
sourcepub fn get_endpoint(&self) -> &Option<String>
pub fn get_endpoint(&self) -> &Option<String>
The endpoint of the shared file system that is accessed by the studio component resource.
sourcepub fn file_system_id(self, input: impl Into<String>) -> Self
pub fn file_system_id(self, input: impl Into<String>) -> Self
The unique identifier for a file system.
sourcepub fn set_file_system_id(self, input: Option<String>) -> Self
pub fn set_file_system_id(self, input: Option<String>) -> Self
The unique identifier for a file system.
sourcepub fn get_file_system_id(&self) -> &Option<String>
pub fn get_file_system_id(&self) -> &Option<String>
The unique identifier for a file system.
sourcepub fn linux_mount_point(self, input: impl Into<String>) -> Self
pub fn linux_mount_point(self, input: impl Into<String>) -> Self
The mount location for a shared file system on a Linux virtual workstation.
sourcepub fn set_linux_mount_point(self, input: Option<String>) -> Self
pub fn set_linux_mount_point(self, input: Option<String>) -> Self
The mount location for a shared file system on a Linux virtual workstation.
sourcepub fn get_linux_mount_point(&self) -> &Option<String>
pub fn get_linux_mount_point(&self) -> &Option<String>
The mount location for a shared file system on a Linux virtual workstation.
The name of the file share.
The name of the file share.
The name of the file share.
sourcepub fn windows_mount_drive(self, input: impl Into<String>) -> Self
pub fn windows_mount_drive(self, input: impl Into<String>) -> Self
The mount location for a shared file system on a Windows virtual workstation.
sourcepub fn set_windows_mount_drive(self, input: Option<String>) -> Self
pub fn set_windows_mount_drive(self, input: Option<String>) -> Self
The mount location for a shared file system on a Windows virtual workstation.
sourcepub fn get_windows_mount_drive(&self) -> &Option<String>
pub fn get_windows_mount_drive(&self) -> &Option<String>
The mount location for a shared file system on a Windows virtual workstation.
sourcepub fn build(self) -> SharedFileSystemConfiguration
pub fn build(self) -> SharedFileSystemConfiguration
Consumes the builder and constructs a SharedFileSystemConfiguration
.
Trait Implementations§
source§fn clone(&self) -> SharedFileSystemConfigurationBuilder
fn clone(&self) -> SharedFileSystemConfigurationBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§fn default() -> SharedFileSystemConfigurationBuilder
fn default() -> SharedFileSystemConfigurationBuilder
source§fn eq(&self, other: &SharedFileSystemConfigurationBuilder) -> bool
fn eq(&self, other: &SharedFileSystemConfigurationBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.