interface CustomFileSystemProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnSpacePropsMixin.CustomFileSystemProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnSpacePropsMixin_CustomFileSystemProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnSpacePropsMixin.CustomFileSystemProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnSpacePropsMixin.CustomFileSystemProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnSpacePropsMixin » CustomFileSystemProperty |
A file system, created by you, that you assign to a user profile or space for an Amazon SageMaker AI Domain.
Permitted users can access this file system in Amazon SageMaker AI Studio.
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 customFileSystemProperty: sagemaker_mixins.CfnSpacePropsMixin.CustomFileSystemProperty = {
efsFileSystem: {
fileSystemId: 'fileSystemId',
},
fSxLustreFileSystem: {
fileSystemId: 'fileSystemId',
},
s3FileSystem: {
s3Uri: 's3Uri',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| efs | IResolvable | EFSFile | A custom file system in Amazon EFS. |
| f | IResolvable | FSx | A custom file system in Amazon FSx for Lustre. |
| s3 | IResolvable | S3 | A custom file system in Amazon S3. |
efsFileSystem?
Type:
IResolvable | EFSFile
(optional)
A custom file system in Amazon EFS.
fSxLustreFileSystem?
Type:
IResolvable | FSx
(optional)
A custom file system in Amazon FSx for Lustre.
s3FileSystem?
Type:
IResolvable | S3
(optional)
A custom file system in Amazon S3.
This is only supported in Amazon SageMaker Unified Studio.

.NET
Go
Java
Python
TypeScript