Interface CfnCluster.ClusterInstanceGroupProperty

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

@Stability(Stable) public static interface CfnCluster.ClusterInstanceGroupProperty extends software.amazon.jsii.JsiiSerializable
The configuration information of the instance group within the HyperPod cluster.

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.*;
 ClusterInstanceGroupProperty clusterInstanceGroupProperty = ClusterInstanceGroupProperty.builder()
         .executionRole("executionRole")
         .instanceCount(123)
         .instanceGroupName("instanceGroupName")
         .instanceType("instanceType")
         .lifeCycleConfig(ClusterLifeCycleConfigProperty.builder()
                 .onCreate("onCreate")
                 .sourceS3Uri("sourceS3Uri")
                 .build())
         // the properties below are optional
         .currentCount(123)
         .instanceStorageConfigs(List.of(ClusterInstanceStorageConfigProperty.builder()
                 .ebsVolumeConfig(ClusterEbsVolumeConfigProperty.builder()
                         .volumeSizeInGb(123)
                         .build())
                 .build()))
         .onStartDeepHealthChecks(List.of("onStartDeepHealthChecks"))
         .threadsPerCore(123)
         .build();
 

See Also: