interface InstanceRequirementsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnCluster.InstanceRequirementsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnCluster_InstanceRequirementsProperty |
Java | software.amazon.awscdk.services.sagemaker.CfnCluster.InstanceRequirementsProperty |
Python | aws_cdk.aws_sagemaker.CfnCluster.InstanceRequirementsProperty |
TypeScript | aws-cdk-lib » aws_sagemaker » CfnCluster » InstanceRequirementsProperty |
The instance requirements for the instance group.
Specifies a list of instance types that can be used.
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 instanceRequirementsProperty: sagemaker.CfnCluster.InstanceRequirementsProperty = {
instanceTypes: ['instanceTypes'],
};
Properties
| Name | Type | Description |
|---|---|---|
| instance | string[] | A list of instance types that can be used for this instance group. |
instanceTypes
Type:
string[]
A list of instance types that can be used for this instance group.

.NET
Go
Java
Python
TypeScript