Interface CfnClusterPropsMixin.RestrictedInstanceGroupsConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnClusterPropsMixin.RestrictedInstanceGroupsConfigProperty.Jsii$Proxy
- Enclosing class:
CfnClusterPropsMixin
@Stability(Stable)
public static interface CfnClusterPropsMixin.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.cfnpropertymixins.services.sagemaker.*;
RestrictedInstanceGroupsConfigProperty restrictedInstanceGroupsConfigProperty = RestrictedInstanceGroupsConfigProperty.builder()
.sharedEnvironmentConfig(SharedEnvironmentConfigProperty.builder()
.fSxLustreConfig(FSxLustreConfigProperty.builder()
.perUnitStorageThroughput(123)
.sizeInGiB(123)
.build())
.fSxLustreDeletionPolicy("fSxLustreDeletionPolicy")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnClusterPropsMixin.RestrictedInstanceGroupsConfigProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
builder
@Stability(Stable) static CfnClusterPropsMixin.RestrictedInstanceGroupsConfigProperty.Builder builder()