public static interface CfnLaunchTemplate.VCpuCountProperty
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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnLaunchTemplate.VCpuCountProperty.Builder
A builder for
CfnLaunchTemplate.VCpuCountProperty |
static class |
CfnLaunchTemplate.VCpuCountProperty.Jsii$Proxy
An implementation for
CfnLaunchTemplate.VCpuCountProperty |
Modifier and Type | Method and Description |
---|---|
static CfnLaunchTemplate.VCpuCountProperty.Builder |
builder() |
default java.lang.Number |
getMax()
The maximum number of vCPUs.
|
default java.lang.Number |
getMin()
The minimum number of vCPUs.
|
default java.lang.Number getMax()
To specify no maximum limit, omit this parameter.
default java.lang.Number getMin()
To specify no minimum limit, specify 0
.
static CfnLaunchTemplate.VCpuCountProperty.Builder builder()