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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnCapacityProvider.MemoryMiBRequestProperty
static final class
An implementation forCfnCapacityProvider.MemoryMiBRequestProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMin
The minimum amount of memory in MiB.Instance types with less memory than this value are excluded from selection.
- See Also:
-
getMax
The maximum amount of memory in MiB.Instance types with more memory than this value are excluded from selection.
- See Also:
-
builder
-