Interface CfnServerlessCache.IDataStorageProperty
The data storage limit.
Namespace: Amazon.CDK.AWS.ElastiCache
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnServerlessCache.IDataStorageProperty
Syntax (vb)
Public Interface CfnServerlessCache.IDataStorageProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.ElastiCache;
var dataStorageProperty = new DataStorageProperty {
Unit = "unit",
// the properties below are optional
Maximum = 123,
Minimum = 123
};
Synopsis
Properties
| Maximum | The upper limit for data storage the cache is set to use. |
| Minimum | The lower limit for data storage the cache is set to use. |
| Unit | The unit that the storage is measured in, in GB. |
Properties
Maximum
The upper limit for data storage the cache is set to use.
double? Maximum { get; }
Property Value
Remarks
Minimum
The lower limit for data storage the cache is set to use.
double? Minimum { get; }
Property Value
Remarks
Unit
The unit that the storage is measured in, in GB.
string Unit { get; }