interface EFSFileSystemConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnDomain.EFSFileSystemConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnDomain_EFSFileSystemConfigProperty |
Java | software.amazon.awscdk.services.sagemaker.CfnDomain.EFSFileSystemConfigProperty |
Python | aws_cdk.aws_sagemaker.CfnDomain.EFSFileSystemConfigProperty |
TypeScript | aws-cdk-lib » aws_sagemaker » CfnDomain » EFSFileSystemConfigProperty |
The settings for assigning a custom Amazon EFS file system to a user profile or space for an Amazon SageMaker AI Domain.
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 eFSFileSystemConfigProperty: sagemaker.CfnDomain.EFSFileSystemConfigProperty = {
fileSystemId: 'fileSystemId',
// the properties below are optional
fileSystemPath: 'fileSystemPath',
};
Properties
| Name | Type | Description |
|---|---|---|
| file | string | The ID of your Amazon EFS file system. |
| file | string | The path to the file system directory that is accessible in Amazon SageMaker AI Studio. |
fileSystemId
Type:
string
The ID of your Amazon EFS file system.
fileSystemPath?
Type:
string
(optional)
The path to the file system directory that is accessible in Amazon SageMaker AI Studio.
Permitted users can access only this directory and below.

.NET
Go
Java
Python
TypeScript