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

.NET
Go
Java
Python
TypeScript