Interface CfnCluster.SharedEnvironmentConfigProperty

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

@Stability(Stable) public static interface CfnCluster.SharedEnvironmentConfigProperty extends software.amazon.jsii.JsiiSerializable
The shared environment configuration for restricted instance groups that use cluster-level shared FSx Lustre storage.

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

See Also: