Struct aws_sdk_sagemaker::types::builders::FileSystemConfigBuilder
source · #[non_exhaustive]pub struct FileSystemConfigBuilder { /* private fields */ }
Expand description
A builder for FileSystemConfig
.
Implementations§
source§impl FileSystemConfigBuilder
impl FileSystemConfigBuilder
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
.
Trait Implementations§
source§impl Clone for FileSystemConfigBuilder
impl Clone for FileSystemConfigBuilder
source§fn clone(&self) -> FileSystemConfigBuilder
fn clone(&self) -> FileSystemConfigBuilder
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§impl Debug for FileSystemConfigBuilder
impl Debug for FileSystemConfigBuilder
source§impl Default for FileSystemConfigBuilder
impl Default for FileSystemConfigBuilder
source§fn default() -> FileSystemConfigBuilder
fn default() -> FileSystemConfigBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<FileSystemConfigBuilder> for FileSystemConfigBuilder
impl PartialEq<FileSystemConfigBuilder> for FileSystemConfigBuilder
source§fn eq(&self, other: &FileSystemConfigBuilder) -> bool
fn eq(&self, other: &FileSystemConfigBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.