Interface CfnServerlessCache.CacheUsageLimitsProperty

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

@Stability(Stable) public static interface CfnServerlessCache.CacheUsageLimitsProperty extends software.amazon.jsii.JsiiSerializable
The usage limits for storage and ElastiCache Processing Units for the cache.

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.elasticache.*;
 CacheUsageLimitsProperty cacheUsageLimitsProperty = CacheUsageLimitsProperty.builder()
         .dataStorage(DataStorageProperty.builder()
                 .unit("unit")
                 // the properties below are optional
                 .maximum(123)
                 .minimum(123)
                 .build())
         .ecpuPerSecond(ECPUPerSecondProperty.builder()
                 .maximum(123)
                 .minimum(123)
                 .build())
         .build();
 

See Also: