Interface CfnCluster.RestrictedInstanceGroupsConfigProperty

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

@Stability(Stable) public static interface CfnCluster.RestrictedInstanceGroupsConfigProperty extends software.amazon.jsii.JsiiSerializable
The cluster-level configuration for restricted instance groups, including shared environment settings for inter-RIG communication and FSx Lustre sharing.

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.*;
 RestrictedInstanceGroupsConfigProperty restrictedInstanceGroupsConfigProperty = RestrictedInstanceGroupsConfigProperty.builder()
         .sharedEnvironmentConfig(SharedEnvironmentConfigProperty.builder()
                 .fSxLustreDeletionPolicy("fSxLustreDeletionPolicy")
                 // the properties below are optional
                 .fSxLustreConfig(FSxLustreConfigProperty.builder()
                         .perUnitStorageThroughput(123)
                         .sizeInGiB(123)
                         .build())
                 .build())
         .build();
 

See Also: