interface ScalingConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.PCS.Mixins.CfnComputeNodeGroupPropsMixin.ScalingConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awspcs/mixins#CfnComputeNodeGroupPropsMixin_ScalingConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.pcs.mixins.CfnComputeNodeGroupPropsMixin.ScalingConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_pcs.mixins.CfnComputeNodeGroupPropsMixin.ScalingConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_pcs » mixins » CfnComputeNodeGroupPropsMixin » ScalingConfigurationProperty |
Specifies the boundaries of the compute node group auto scaling.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as pcs_mixins } from '@aws-cdk/mixins-preview/aws-pcs';
const scalingConfigurationProperty: pcs_mixins.CfnComputeNodeGroupPropsMixin.ScalingConfigurationProperty = {
maxInstanceCount: 123,
minInstanceCount: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| max | number | The upper bound of the number of instances allowed in the compute fleet. |
| min | number | The lower bound of the number of instances allowed in the compute fleet. |
maxInstanceCount?
Type:
number
(optional)
The upper bound of the number of instances allowed in the compute fleet.
minInstanceCount?
Type:
number
(optional)
The lower bound of the number of instances allowed in the compute fleet.

.NET
Go
Java
Python
TypeScript