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: