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

.NET
Go
Java
Python
TypeScript