Copyright | (c) 2013-2021 Brendan Hay |
---|---|
License | Mozilla Public License, v. 2.0. |
Maintainer | Brendan Hay <brendan.g.hay+amazonka@gmail.com> |
Stability | auto-generated |
Portability | non-portable (GHC extensions) |
Safe Haskell | None |
Documentation
data FileSystemConfig Source #
The Amazon Elastic File System (EFS) storage configuration for a SageMaker image.
See: newFileSystemConfig
smart constructor.
FileSystemConfig' | |
|
Instances
newFileSystemConfig :: FileSystemConfig Source #
Create a value of FileSystemConfig
with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:defaultGid:FileSystemConfig'
, fileSystemConfig_defaultGid
- The default POSIX group ID (GID). If not specified, defaults to 100
.
$sel:mountPath:FileSystemConfig'
, fileSystemConfig_mountPath
- 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.
$sel:defaultUid:FileSystemConfig'
, fileSystemConfig_defaultUid
- The default POSIX user ID (UID). If not specified, defaults to 1000
.
fileSystemConfig_defaultGid :: Lens' FileSystemConfig (Maybe Natural) Source #
The default POSIX group ID (GID). If not specified, defaults to 100
.
fileSystemConfig_mountPath :: Lens' FileSystemConfig (Maybe Text) Source #
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.
fileSystemConfig_defaultUid :: Lens' FileSystemConfig (Maybe Natural) Source #
The default POSIX user ID (UID). If not specified, defaults to 1000
.