interface FSxLustreFileSystemConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnDomainPropsMixin.FSxLustreFileSystemConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnDomainPropsMixin_FSxLustreFileSystemConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnDomainPropsMixin.FSxLustreFileSystemConfigProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnDomainPropsMixin.FSxLustreFileSystemConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnDomainPropsMixin » FSxLustreFileSystemConfigProperty |
The settings for assigning a custom Amazon FSx for Lustre file system to a user profile or space for an Amazon SageMaker 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 fSxLustreFileSystemConfigProperty: sagemaker_mixins.CfnDomainPropsMixin.FSxLustreFileSystemConfigProperty = {
fileSystemId: 'fileSystemId',
fileSystemPath: 'fileSystemPath',
};
Properties
| Name | Type | Description |
|---|---|---|
| file | string | The globally unique, 17-digit, ID of the file system, assigned by Amazon FSx for Lustre. |
| file | string | The path to the file system directory that is accessible in Amazon SageMaker Studio. |
fileSystemId?
Type:
string
(optional)
The globally unique, 17-digit, ID of the file system, assigned by Amazon FSx for Lustre.
fileSystemPath?
Type:
string
(optional)
The path to the file system directory that is accessible in Amazon SageMaker Studio.
Permitted users can access only this directory and below.

.NET
Go
Java
Python
TypeScript