interface RestrictedInstanceGroupsConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SageMaker.CfnClusterPropsMixin.RestrictedInstanceGroupsConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssagemaker#CfnClusterPropsMixin_RestrictedInstanceGroupsConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.sagemaker.CfnClusterPropsMixin.RestrictedInstanceGroupsConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_sagemaker.CfnClusterPropsMixin.RestrictedInstanceGroupsConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sagemaker » CfnClusterPropsMixin » 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/cfn-property-mixins';
const restrictedInstanceGroupsConfigProperty: sagemaker.CfnClusterPropsMixin.RestrictedInstanceGroupsConfigProperty = {
sharedEnvironmentConfig: {
fSxLustreConfig: {
perUnitStorageThroughput: 123,
sizeInGiB: 123,
},
fSxLustreDeletionPolicy: 'fSxLustreDeletionPolicy',
},
};
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
(optional)
The shared environment configuration for restricted instance groups that use cluster-level shared FSx Lustre storage.

.NET
Go
Java
Python
TypeScript