interface EnvironmentConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnCluster.EnvironmentConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnCluster_EnvironmentConfigProperty |
Java | software.amazon.awscdk.services.sagemaker.CfnCluster.EnvironmentConfigProperty |
Python | aws_cdk.aws_sagemaker.CfnCluster.EnvironmentConfigProperty |
TypeScript | aws-cdk-lib » aws_sagemaker » CfnCluster » EnvironmentConfigProperty |
The configuration for the restricted instance groups (RIG) environment.
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 environmentConfigProperty: sagemaker.CfnCluster.EnvironmentConfigProperty = {
fSxLustreConfig: {
perUnitStorageThroughput: 123,
sizeInGiB: 123,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| f | IResolvable | FSx | Configuration settings for an Amazon FSx for Lustre file system to be used with the cluster. |
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