interface VCpuCountRequestProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AutoScaling.Mixins.CfnAutoScalingGroupPropsMixin.VCpuCountRequestProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsautoscaling/mixins#CfnAutoScalingGroupPropsMixin_VCpuCountRequestProperty |
Java | software.amazon.awscdk.mixins.preview.services.autoscaling.mixins.CfnAutoScalingGroupPropsMixin.VCpuCountRequestProperty |
Python | aws_cdk.mixins_preview.aws_autoscaling.mixins.CfnAutoScalingGroupPropsMixin.VCpuCountRequestProperty |
TypeScript | @aws-cdk/mixins-preview » aws_autoscaling » mixins » CfnAutoScalingGroupPropsMixin » VCpuCountRequestProperty |
VCpuCountRequest is a property of the InstanceRequirements property of the AWS::AutoScaling::AutoScalingGroup LaunchTemplateOverrides property type that describes the minimum and maximum number of vCPUs for an instance type.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as autoscaling_mixins } from '@aws-cdk/mixins-preview/aws-autoscaling';
const vCpuCountRequestProperty: autoscaling_mixins.CfnAutoScalingGroupPropsMixin.VCpuCountRequestProperty = {
max: 123,
min: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| max? | number | The maximum number of vCPUs. |
| min? | number | The minimum number of vCPUs. |
max?
Type:
number
(optional)
The maximum number of vCPUs.
min?
Type:
number
(optional)
The minimum number of vCPUs.

.NET
Go
Java
Python
TypeScript