Interface CfnLaunchTemplate.VCpuCountProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnLaunchTemplate.VCpuCountProperty.Jsii$Proxy
- Enclosing class:
- CfnLaunchTemplate
@Stability(Stable)
public static interface CfnLaunchTemplate.VCpuCountProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.ec2.*; VCpuCountProperty vCpuCountProperty = VCpuCountProperty.builder() .max(123) .min(123) .build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnLaunchTemplate.VCpuCountProperty
static final class
An implementation forCfnLaunchTemplate.VCpuCountProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMax
The maximum number of vCPUs.To specify no maximum limit, omit this parameter.
-
getMin
The minimum number of vCPUs.To specify no minimum limit, specify
0
. -
builder
-