aws-cdk-lib.aws_sagemaker.CfnAppImageConfig.FileSystemConfigProperty

interface FileSystemConfigProperty

LanguageType name
.NETAmazon.CDK.AWS.Sagemaker.CfnAppImageConfig.FileSystemConfigProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnAppImageConfig_FileSystemConfigProperty
Javasoftware.amazon.awscdk.services.sagemaker.CfnAppImageConfig.FileSystemConfigProperty
Pythonaws_cdk.aws_sagemaker.CfnAppImageConfig.FileSystemConfigProperty
TypeScript aws-cdk-lib » 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 { aws_sagemaker as sagemaker } from 'aws-cdk-lib';
const fileSystemConfigProperty: sagemaker.CfnAppImageConfig.FileSystemConfigProperty = {
  defaultGid: 123,
  defaultUid: 123,
  mountPath: 'mountPath',
};

Properties

NameTypeDescription
defaultGid?numberThe default POSIX group ID (GID).
defaultUid?numberThe default POSIX user ID (UID).
mountPath?stringThe 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* .