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