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: {
volumeSizeInGb: 123,
},
};
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. |
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
.