Interface CfnAutoScalingGroup.MemoryGiBPerVCpuRequestProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAutoScalingGroup.MemoryGiBPerVCpuRequestProperty.Jsii$Proxy
- Enclosing class:
CfnAutoScalingGroup
@Stability(Stable)
public static interface CfnAutoScalingGroup.MemoryGiBPerVCpuRequestProperty
extends software.amazon.jsii.JsiiSerializable
MemoryGiBPerVCpuRequest
is a property of the InstanceRequirements
property of the AWS::AutoScaling::AutoScalingGroup LaunchTemplateOverrides property type that describes the minimum and maximum amount of memory per vCPU for an instance type, 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.autoscaling.*; MemoryGiBPerVCpuRequestProperty memoryGiBPerVCpuRequestProperty = MemoryGiBPerVCpuRequestProperty.builder() .max(123) .min(123) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnAutoScalingGroup.MemoryGiBPerVCpuRequestProperty
static final class
An implementation forCfnAutoScalingGroup.MemoryGiBPerVCpuRequestProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMax
The memory maximum in GiB. -
getMin
The memory minimum in GiB. -
builder
-