interface ManagedInstanceScalingProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnEndpointConfig.ManagedInstanceScalingProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnEndpointConfig_ManagedInstanceScalingProperty |
Java | software.amazon.awscdk.services.sagemaker.CfnEndpointConfig.ManagedInstanceScalingProperty |
Python | aws_cdk.aws_sagemaker.CfnEndpointConfig.ManagedInstanceScalingProperty |
TypeScript | aws-cdk-lib » aws_sagemaker » CfnEndpointConfig » ManagedInstanceScalingProperty |
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 managedInstanceScalingProperty: sagemaker.CfnEndpointConfig.ManagedInstanceScalingProperty = {
maxInstanceCount: 123,
minInstanceCount: 123,
status: 'status',
};
Properties
| Name | Type | Description |
|---|---|---|
| max | number | |
| min | number | |
| status? | string |
maxInstanceCount?
Type:
number
(optional)
minInstanceCount?
Type:
number
(optional)
status?
Type:
string
(optional)

.NET
Go
Java
Python
TypeScript