Struct aws_sdk_sagemaker::model::file_system_config::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for FileSystemConfig
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn mount_path(self, input: impl Into<String>) -> Self
pub fn mount_path(self, input: impl Into<String>) -> Self
The path within the image to mount the user's EFS home directory. The directory should be empty. If not specified, defaults to /home/sagemaker-user.
sourcepub fn set_mount_path(self, input: Option<String>) -> Self
pub fn set_mount_path(self, input: Option<String>) -> Self
The path within the image to mount the user's EFS home directory. The directory should be empty. If not specified, defaults to /home/sagemaker-user.
sourcepub fn default_uid(self, input: i32) -> Self
pub fn default_uid(self, input: i32) -> Self
The default POSIX user ID (UID). If not specified, defaults to 1000
.
sourcepub fn set_default_uid(self, input: Option<i32>) -> Self
pub fn set_default_uid(self, input: Option<i32>) -> Self
The default POSIX user ID (UID). If not specified, defaults to 1000
.
sourcepub fn default_gid(self, input: i32) -> Self
pub fn default_gid(self, input: i32) -> Self
The default POSIX group ID (GID). If not specified, defaults to 100
.
sourcepub fn set_default_gid(self, input: Option<i32>) -> Self
pub fn set_default_gid(self, input: Option<i32>) -> Self
The default POSIX group ID (GID). If not specified, defaults to 100
.
sourcepub fn build(self) -> FileSystemConfig
pub fn build(self) -> FileSystemConfig
Consumes the builder and constructs a FileSystemConfig
.