Interface CfnAutoScalingGroupPropsMixin.MemoryMiBRequestProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnAutoScalingGroupPropsMixin.MemoryMiBRequestProperty.Jsii$Proxy
Enclosing class:
CfnAutoScalingGroupPropsMixin

@Stability(Stable) public static interface CfnAutoScalingGroupPropsMixin.MemoryMiBRequestProperty extends software.amazon.jsii.JsiiSerializable
MemoryMiBRequest is a property of the InstanceRequirements property of the AWS::AutoScaling::AutoScalingGroup LaunchTemplateOverrides property type that describes the minimum and maximum instance memory size for an instance type, in MiB.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.mixins.preview.services.autoscaling.mixins.*;
 MemoryMiBRequestProperty memoryMiBRequestProperty = MemoryMiBRequestProperty.builder()
         .max(123)
         .min(123)
         .build();
 

See Also: