interface InstancePoolsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnEndpointConfig.InstancePoolsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnEndpointConfig_InstancePoolsProperty |
Java | software.amazon.awscdk.services.sagemaker.CfnEndpointConfig.InstancePoolsProperty |
Python | aws_cdk.aws_sagemaker.CfnEndpointConfig.InstancePoolsProperty |
TypeScript | aws-cdk-lib » aws_sagemaker » CfnEndpointConfig » InstancePoolsProperty |
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 instancePoolsProperty: sagemaker.CfnEndpointConfig.InstancePoolsProperty = {
instanceType: 'instanceType',
priority: 123,
// the properties below are optional
modelNameOverride: 'modelNameOverride',
};
Properties
| Name | Type | Description |
|---|---|---|
| instance | string | |
| priority | number | |
| model | string |
instanceType
Type:
string
priority
Type:
number
modelNameOverride?
Type:
string
(optional)

.NET
Go
Java
Python
TypeScript