Interface CfnCluster.ClusterRestrictedInstanceGroupProperty

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

@Stability(Stable) public static interface CfnCluster.ClusterRestrictedInstanceGroupProperty extends software.amazon.jsii.JsiiSerializable
Details of a restricted instance group in a SageMaker 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.*;
 ClusterRestrictedInstanceGroupProperty clusterRestrictedInstanceGroupProperty = ClusterRestrictedInstanceGroupProperty.builder()
         .environmentConfig(EnvironmentConfigProperty.builder()
                 .fSxLustreConfig(FSxLustreConfigProperty.builder()
                         .perUnitStorageThroughput(123)
                         .sizeInGiB(123)
                         .build())
                 .build())
         .executionRole("executionRole")
         .instanceCount(123)
         .instanceGroupName("instanceGroupName")
         .instanceType("instanceType")
         // the properties below are optional
         .currentCount(123)
         .instanceStorageConfigs(List.of(ClusterInstanceStorageConfigProperty.builder()
                 .ebsVolumeConfig(ClusterEbsVolumeConfigProperty.builder()
                         .volumeSizeInGb(123)
                         .build())
                 .build()))
         .onStartDeepHealthChecks(List.of("onStartDeepHealthChecks"))
         .overrideVpcConfig(VpcConfigProperty.builder()
                 .securityGroupIds(List.of("securityGroupIds"))
                 .subnets(List.of("subnets"))
                 .build())
         .threadsPerCore(123)
         .trainingPlanArn("trainingPlanArn")
         .build();
 

See Also: