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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCluster.SharedEnvironmentConfigPropertystatic final classAn implementation forCfnCluster.SharedEnvironmentConfigProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getFSxLustreDeletionPolicy
The deletion policy for the shared FSx Lustre file system.Keep retains the FSx when RIGs are deleted. DeleteIfNotUsed deletes the FSx when no RIGs reference it.
- See Also:
-
getFSxLustreConfig
Configuration settings for an Amazon FSx for Lustre file system to be used with the cluster.Returns union: either
IResolvableorCfnCluster.FSxLustreConfigProperty- See Also:
-
builder
-