interface ManagedInstanceScalingProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnEndpointConfigPropsMixin.ManagedInstanceScalingProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnEndpointConfigPropsMixin_ManagedInstanceScalingProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnEndpointConfigPropsMixin.ManagedInstanceScalingProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnEndpointConfigPropsMixin.ManagedInstanceScalingProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnEndpointConfigPropsMixin » ManagedInstanceScalingProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as sagemaker_mixins } from '@aws-cdk/mixins-preview/aws-sagemaker';
const managedInstanceScalingProperty: sagemaker_mixins.CfnEndpointConfigPropsMixin.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