Interface CfnCapacityProviderPropsMixin.MemoryMiBRequestProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCapacityProviderPropsMixin.MemoryMiBRequestProperty.Jsii$Proxy
- Enclosing class:
CfnCapacityProviderPropsMixin
@Stability(Stable)
public static interface CfnCapacityProviderPropsMixin.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.cfnpropertymixins.services.ecs.*;
MemoryMiBRequestProperty memoryMiBRequestProperty = MemoryMiBRequestProperty.builder()
.max(123)
.min(123)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCapacityProviderPropsMixin.MemoryMiBRequestPropertystatic final classAn implementation forCfnCapacityProviderPropsMixin.MemoryMiBRequestProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMax
The maximum amount of memory in MiB.Instance types with more memory than this value are excluded from selection.
- See Also:
-
getMin
The minimum amount of memory in MiB.Instance types with less memory than this value are excluded from selection.
- See Also:
-
builder
-