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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCluster.RestrictedInstanceGroupsConfigPropertystatic final classAn implementation forCfnCluster.RestrictedInstanceGroupsConfigProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The shared environment configuration for restricted instance groups that use cluster-level shared FSx Lustre storage.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details