Interface CfnServerlessCache.DataStorageProperty

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

@Stability(Stable) public static interface CfnServerlessCache.DataStorageProperty extends software.amazon.jsii.JsiiSerializable
The data storage limit.

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

See Also: