Interface CfnCluster.ClusterInstanceStorageConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnCluster.ClusterInstanceStorageConfigProperty.Jsii$Proxy
Enclosing class:
CfnCluster

@Stability(Stable) public static interface CfnCluster.ClusterInstanceStorageConfigProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.sagemaker.*;
 ClusterInstanceStorageConfigProperty clusterInstanceStorageConfigProperty = ClusterInstanceStorageConfigProperty.builder()
         .ebsVolumeConfig(ClusterEbsVolumeConfigProperty.builder()
                 .volumeSizeInGb(123)
                 .build())
         .build();
 

See Also: