interface ClusterInstanceStorageConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnCluster.ClusterInstanceStorageConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnCluster_ClusterInstanceStorageConfigProperty |
Java | software.amazon.awscdk.services.sagemaker.CfnCluster.ClusterInstanceStorageConfigProperty |
Python | aws_cdk.aws_sagemaker.CfnCluster.ClusterInstanceStorageConfigProperty |
TypeScript | aws-cdk-lib » aws_sagemaker » CfnCluster » ClusterInstanceStorageConfigProperty |
Defines the configuration for attaching additional storage to the instances in the SageMaker HyperPod cluster instance group.
To learn more, see SageMaker HyperPod release notes: June 20, 2024 .
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 clusterInstanceStorageConfigProperty: sagemaker.CfnCluster.ClusterInstanceStorageConfigProperty = {
ebsVolumeConfig: {
rootVolume: false,
volumeKmsKeyId: 'volumeKmsKeyId',
volumeSizeInGb: 123,
},
fsxLustreConfig: {
dnsName: 'dnsName',
mountName: 'mountName',
// the properties below are optional
mountPath: 'mountPath',
},
fsxOpenZfsConfig: {
dnsName: 'dnsName',
// the properties below are optional
mountPath: 'mountPath',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| ebs | IResolvable | Cluster | Defines the configuration for attaching additional Amazon Elastic Block Store (EBS) volumes to the instances in the SageMaker HyperPod cluster instance group. |
| fsx | IResolvable | Cluster | Configuration for mounting an Amazon FSx Lustre file system to the instances in the SageMaker HyperPod cluster instance group. |
| fsx | IResolvable | Cluster | Configuration for mounting an Amazon FSx OpenZFS file system to the instances in the SageMaker HyperPod cluster instance group. |
ebsVolumeConfig?
Type:
IResolvable | Cluster
(optional)
Defines the configuration for attaching additional Amazon Elastic Block Store (EBS) volumes to the instances in the SageMaker HyperPod cluster instance group.
The additional EBS volume is attached to each instance within the SageMaker HyperPod cluster instance group and mounted to /opt/sagemaker .
fsxLustreConfig?
Type:
IResolvable | Cluster
(optional)
Configuration for mounting an Amazon FSx Lustre file system to the instances in the SageMaker HyperPod cluster instance group.
fsxOpenZfsConfig?
Type:
IResolvable | Cluster
(optional)
Configuration for mounting an Amazon FSx OpenZFS file system to the instances in the SageMaker HyperPod cluster instance group.

.NET
Go
Java
Python
TypeScript