aws-cdk-lib.aws_ec2.CfnLaunchTemplate.VCpuCountProperty

interface VCpuCountProperty

LanguageType name
.NETAmazon.CDK.AWS.EC2.CfnLaunchTemplate.VCpuCountProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsec2#CfnLaunchTemplate_VCpuCountProperty
Javasoftware.amazon.awscdk.services.ec2.CfnLaunchTemplate.VCpuCountProperty
Pythonaws_cdk.aws_ec2.CfnLaunchTemplate.VCpuCountProperty
TypeScript aws-cdk-lib » aws_ec2 » CfnLaunchTemplate » VCpuCountProperty

The minimum and maximum number of vCPUs.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ec2 as ec2 } from 'aws-cdk-lib';
const vCpuCountProperty: ec2.CfnLaunchTemplate.VCpuCountProperty = {
  max: 123,
  min: 123,
};

Properties

NameTypeDescription
max?numberThe maximum number of vCPUs.
min?numberThe minimum number of vCPUs.

max?

Type: number (optional)

The maximum number of vCPUs.

To specify no maximum limit, omit this parameter.


min?

Type: number (optional)

The minimum number of vCPUs.

To specify no minimum limit, specify 0 .