Struct aws_sdk_sagemaker::model::FileSystemConfig [−][src]
#[non_exhaustive]pub struct FileSystemConfig {
pub mount_path: Option<String>,
pub default_uid: Option<i32>,
pub default_gid: Option<i32>,
}
Expand description
The Amazon Elastic File System (EFS) storage configuration for a SageMaker image.
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.mount_path: Option<String>
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.
default_uid: Option<i32>
The default POSIX user ID (UID). If not specified, defaults to 1000
.
default_gid: Option<i32>
The default POSIX group ID (GID). If not specified, defaults to 100
.
Implementations
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.
The default POSIX user ID (UID). If not specified, defaults to 1000
.
The default POSIX group ID (GID). If not specified, defaults to 100
.
Creates a new builder-style object to manufacture FileSystemConfig
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for FileSystemConfig
impl Send for FileSystemConfig
impl Sync for FileSystemConfig
impl Unpin for FileSystemConfig
impl UnwindSafe for FileSystemConfig
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more