interface FileSystemConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnAppImageConfigPropsMixin.FileSystemConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnAppImageConfigPropsMixin_FileSystemConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnAppImageConfigPropsMixin.FileSystemConfigProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnAppImageConfigPropsMixin.FileSystemConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnAppImageConfigPropsMixin » FileSystemConfigProperty |
The Amazon Elastic File System storage configuration for a SageMaker AI image.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as sagemaker_mixins } from '@aws-cdk/mixins-preview/aws-sagemaker';
const fileSystemConfigProperty: sagemaker_mixins.CfnAppImageConfigPropsMixin.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* .

.NET
Go
Java
Python
TypeScript