Interface CfnClusterPropsMixin.ClusterInstanceStorageConfigProperty

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

@Stability(Stable) public static interface CfnClusterPropsMixin.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.cfnpropertymixins.services.sagemaker.*;
 ClusterInstanceStorageConfigProperty clusterInstanceStorageConfigProperty = ClusterInstanceStorageConfigProperty.builder()
         .ebsVolumeConfig(ClusterEbsVolumeConfigProperty.builder()
                 .rootVolume(false)
                 .volumeKmsKeyId("volumeKmsKeyId")
                 .volumeSizeInGb(123)
                 .build())
         .fsxLustreConfig(ClusterFsxLustreConfigProperty.builder()
                 .dnsName("dnsName")
                 .mountName("mountName")
                 .mountPath("mountPath")
                 .build())
         .fsxOpenZfsConfig(ClusterFsxOpenZfsConfigProperty.builder()
                 .dnsName("dnsName")
                 .mountPath("mountPath")
                 .build())
         .build();
 

See Also: