Interface CfnServerlessCachePropsMixin.CacheUsageLimitsProperty

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

@Stability(Stable) public static interface CfnServerlessCachePropsMixin.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.mixins.preview.services.elasticache.mixins.*;
 CacheUsageLimitsProperty cacheUsageLimitsProperty = CacheUsageLimitsProperty.builder()
         .dataStorage(DataStorageProperty.builder()
                 .maximum(123)
                 .minimum(123)
                 .unit("unit")
                 .build())
         .ecpuPerSecond(ECPUPerSecondProperty.builder()
                 .maximum(123)
                 .minimum(123)
                 .build())
         .build();
 

See Also: