interface ClusterFsxOpenZfsConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SageMaker.CfnClusterPropsMixin.ClusterFsxOpenZfsConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssagemaker#CfnClusterPropsMixin_ClusterFsxOpenZfsConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.sagemaker.CfnClusterPropsMixin.ClusterFsxOpenZfsConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_sagemaker.CfnClusterPropsMixin.ClusterFsxOpenZfsConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sagemaker » 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 { aws_sagemaker as sagemaker } from '@aws-cdk/cfn-property-mixins';
const clusterFsxOpenZfsConfigProperty: sagemaker.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