Interface CfnCapacityProvider.MemoryMiBRequestProperty

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

@Stability(Stable) public static interface CfnCapacityProvider.MemoryMiBRequestProperty extends software.amazon.jsii.JsiiSerializable
The minimum and maximum amount of memory in mebibytes (MiB) for instance type selection.

This ensures that selected instance types have adequate memory for your workloads.

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.ecs.*;
 MemoryMiBRequestProperty memoryMiBRequestProperty = MemoryMiBRequestProperty.builder()
         .min(123)
         // the properties below are optional
         .max(123)
         .build();
 

See Also: