interface ClusterFsxLustreConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnCluster.ClusterFsxLustreConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnCluster_ClusterFsxLustreConfigProperty |
Java | software.amazon.awscdk.services.sagemaker.CfnCluster.ClusterFsxLustreConfigProperty |
Python | aws_cdk.aws_sagemaker.CfnCluster.ClusterFsxLustreConfigProperty |
TypeScript | aws-cdk-lib » aws_sagemaker » CfnCluster » ClusterFsxLustreConfigProperty |
Configuration for mounting an Amazon FSx Lustre file system to the instances in the SageMaker HyperPod cluster instance group.
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 clusterFsxLustreConfigProperty: sagemaker.CfnCluster.ClusterFsxLustreConfigProperty = {
dnsName: 'dnsName',
mountName: 'mountName',
// the properties below are optional
mountPath: 'mountPath',
};
Properties
| Name | Type | Description |
|---|---|---|
| dns | string | The DNS name of the FSx for Lustre file system. |
| mount | string | The mount name of the FSx for Lustre file system. |
| mount | string | The mount path for the FSx for Lustre file system. |
dnsName
Type:
string
The DNS name of the FSx for Lustre file system.
mountName
Type:
string
The mount name of the FSx for Lustre file system.
mountPath?
Type:
string
(optional)
The mount path for the FSx for Lustre file system.

.NET
Go
Java
Python
TypeScript