interface InstanceRequirementsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SageMaker.CfnClusterPropsMixin.InstanceRequirementsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssagemaker#CfnClusterPropsMixin_InstanceRequirementsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.sagemaker.CfnClusterPropsMixin.InstanceRequirementsProperty |
Python | aws_cdk.cfn_property_mixins.aws_sagemaker.CfnClusterPropsMixin.InstanceRequirementsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sagemaker » CfnClusterPropsMixin » 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/cfn-property-mixins';
const instanceRequirementsProperty: sagemaker.CfnClusterPropsMixin.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[]
(optional)
A list of instance types that can be used for this instance group.

.NET
Go
Java
Python
TypeScript