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