Interface CfnContainerGroupDefinition.MemoryLimitsProperty

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

@Stability(Stable) public static interface CfnContainerGroupDefinition.MemoryLimitsProperty extends software.amazon.jsii.JsiiSerializable
Specifies how much memory is available to the container.

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.gamelift.*;
 MemoryLimitsProperty memoryLimitsProperty = MemoryLimitsProperty.builder()
         .hardLimit(123)
         .softLimit(123)
         .build();
 

See Also: