interface SharedEnvironmentConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnCluster.SharedEnvironmentConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnCluster_SharedEnvironmentConfigProperty |
Java | software.amazon.awscdk.services.sagemaker.CfnCluster.SharedEnvironmentConfigProperty |
Python | aws_cdk.aws_sagemaker.CfnCluster.SharedEnvironmentConfigProperty |
TypeScript | aws-cdk-lib » aws_sagemaker » CfnCluster » SharedEnvironmentConfigProperty |
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 { aws_sagemaker as sagemaker } from 'aws-cdk-lib';
const sharedEnvironmentConfigProperty: sagemaker.CfnCluster.SharedEnvironmentConfigProperty = {
fSxLustreDeletionPolicy: 'fSxLustreDeletionPolicy',
// the properties below are optional
fSxLustreConfig: {
perUnitStorageThroughput: 123,
sizeInGiB: 123,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| f | string | The deletion policy for the shared FSx Lustre file system. |
| f | IResolvable | FSx | Configuration settings for an Amazon FSx for Lustre file system to be used with the cluster. |
fSxLustreDeletionPolicy
Type:
string
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.
fSxLustreConfig?
Type:
IResolvable | FSx
(optional)
Configuration settings for an Amazon FSx for Lustre file system to be used with the cluster.

.NET
Go
Java
Python
TypeScript