interface RestrictedInstanceGroupsConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnCluster.RestrictedInstanceGroupsConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnCluster_RestrictedInstanceGroupsConfigProperty |
Java | software.amazon.awscdk.services.sagemaker.CfnCluster.RestrictedInstanceGroupsConfigProperty |
Python | aws_cdk.aws_sagemaker.CfnCluster.RestrictedInstanceGroupsConfigProperty |
TypeScript | aws-cdk-lib » aws_sagemaker » CfnCluster » RestrictedInstanceGroupsConfigProperty |
The cluster-level configuration for restricted instance groups, including shared environment settings for inter-RIG communication and FSx Lustre sharing.
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 restrictedInstanceGroupsConfigProperty: sagemaker.CfnCluster.RestrictedInstanceGroupsConfigProperty = {
sharedEnvironmentConfig: {
fSxLustreDeletionPolicy: 'fSxLustreDeletionPolicy',
// the properties below are optional
fSxLustreConfig: {
perUnitStorageThroughput: 123,
sizeInGiB: 123,
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| shared | IResolvable | Shared | The shared environment configuration for restricted instance groups that use cluster-level shared FSx Lustre storage. |
sharedEnvironmentConfig
Type:
IResolvable | Shared
The shared environment configuration for restricted instance groups that use cluster-level shared FSx Lustre storage.

.NET
Go
Java
Python
TypeScript