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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnServerlessCache.DataStoragePropertystatic final classAn implementation forCfnServerlessCache.DataStorageProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getUnit
The unit that the storage is measured in, in GB.- See Also:
-
getMaximum
The upper limit for data storage the cache is set to use.- See Also:
-
getMinimum
The lower limit for data storage the cache is set to use.- See Also:
-
builder
-