interface ManagedInstanceScalingProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SageMaker.CfnEndpointConfigPropsMixin.ManagedInstanceScalingProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssagemaker#CfnEndpointConfigPropsMixin_ManagedInstanceScalingProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.sagemaker.CfnEndpointConfigPropsMixin.ManagedInstanceScalingProperty |
Python | aws_cdk.cfn_property_mixins.aws_sagemaker.CfnEndpointConfigPropsMixin.ManagedInstanceScalingProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sagemaker » CfnEndpointConfigPropsMixin » 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/cfn-property-mixins';
const managedInstanceScalingProperty: sagemaker.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