Interface CfnCluster.EnvironmentConfigProperty

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

@Stability(Stable) public static interface CfnCluster.EnvironmentConfigProperty extends software.amazon.jsii.JsiiSerializable
The configuration for the restricted instance groups (RIG) environment.

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.*;
 EnvironmentConfigProperty environmentConfigProperty = EnvironmentConfigProperty.builder()
         .fSxLustreConfig(FSxLustreConfigProperty.builder()
                 .perUnitStorageThroughput(123)
                 .sizeInGiB(123)
                 .build())
         .build();
 

See Also: