Interface CfnCapacityProvider.TotalLocalStorageGBRequestProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCapacityProvider.TotalLocalStorageGBRequestProperty.Jsii$Proxy
- Enclosing class:
CfnCapacityProvider
@Stability(Stable)
public static interface CfnCapacityProvider.TotalLocalStorageGBRequestProperty
extends software.amazon.jsii.JsiiSerializable
The minimum and maximum total local storage in gigabytes (GB) for instance types with local storage.
This is useful for workloads that require local storage for temporary data or caching.
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.*; TotalLocalStorageGBRequestProperty totalLocalStorageGBRequestProperty = TotalLocalStorageGBRequestProperty.builder() .max(123) .min(123) .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnCapacityProvider.TotalLocalStorageGBRequestProperty
static final class
An implementation forCfnCapacityProvider.TotalLocalStorageGBRequestProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMax
The maximum total local storage in GB.Instance types with more local storage are excluded from selection.
- See Also:
-
getMin
The minimum total local storage in GB.Instance types with less local storage are excluded from selection.
- See Also:
-
builder
-