interface ScalingConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.PCS.CfnComputeNodeGroupPropsMixin.ScalingConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awspcs#CfnComputeNodeGroupPropsMixin_ScalingConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.pcs.CfnComputeNodeGroupPropsMixin.ScalingConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_pcs.CfnComputeNodeGroupPropsMixin.ScalingConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_pcs » 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 { aws_pcs as pcs } from '@aws-cdk/cfn-property-mixins';
const scalingConfigurationProperty: pcs.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