interface FileSystemConfigProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Sagemaker.CfnAppImageConfig.FileSystemConfigProperty |
![]() | software.amazon.awscdk.services.sagemaker.CfnAppImageConfig.FileSystemConfigProperty |
![]() | aws_cdk.aws_sagemaker.CfnAppImageConfig.FileSystemConfigProperty |
![]() | @aws-cdk/aws-sagemaker » CfnAppImageConfig » FileSystemConfigProperty |
The Amazon Elastic File System (EFS) storage configuration for a SageMaker image.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as sagemaker from '@aws-cdk/aws-sagemaker';
const fileSystemConfigProperty: sagemaker.CfnAppImageConfig.FileSystemConfigProperty = {
defaultGid: 123,
defaultUid: 123,
mountPath: 'mountPath',
};
Properties
Name | Type | Description |
---|---|---|
default | number | The default POSIX group ID (GID). |
default | number | The default POSIX user ID (UID). |
mount | string | The path within the image to mount the user's EFS home directory. |
defaultGid?
Type:
number
(optional)
The default POSIX group ID (GID).
If not specified, defaults to 100
.
defaultUid?
Type:
number
(optional)
The default POSIX user ID (UID).
If not specified, defaults to 1000
.
mountPath?
Type:
string
(optional)
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* .