interface EFSFileSystemConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnDomainPropsMixin.EFSFileSystemConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnDomainPropsMixin_EFSFileSystemConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnDomainPropsMixin.EFSFileSystemConfigProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnDomainPropsMixin.EFSFileSystemConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnDomainPropsMixin » 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 { mixins as sagemaker_mixins } from '@aws-cdk/mixins-preview/aws-sagemaker';
const eFSFileSystemConfigProperty: sagemaker_mixins.CfnDomainPropsMixin.EFSFileSystemConfigProperty = {
fileSystemId: 'fileSystemId',
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
(optional)
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