Class CfnServerlessCache.CacheUsageLimitsProperty
The usage limits for storage and ElastiCache Processing Units for the cache.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.ElastiCache
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnServerlessCache.CacheUsageLimitsProperty : CfnServerlessCache.ICacheUsageLimitsProperty
Syntax (vb)
Public Class CfnServerlessCache.CacheUsageLimitsProperty Implements CfnServerlessCache.ICacheUsageLimitsProperty
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 cacheUsageLimitsProperty = new CacheUsageLimitsProperty {
DataStorage = new DataStorageProperty {
Unit = "unit",
// the properties below are optional
Maximum = 123,
Minimum = 123
},
EcpuPerSecond = new ECPUPerSecondProperty {
Maximum = 123,
Minimum = 123
}
};
Synopsis
Constructors
| CacheUsageLimitsProperty() | The usage limits for storage and ElastiCache Processing Units for the cache. |
Properties
| DataStorage | The maximum data storage limit in the cache, expressed in Gigabytes. |
| EcpuPerSecond | The number of ElastiCache Processing Units (ECPU) the cache can consume per second. |
Constructors
CacheUsageLimitsProperty()
The usage limits for storage and ElastiCache Processing Units for the cache.
public CacheUsageLimitsProperty()
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 cacheUsageLimitsProperty = new CacheUsageLimitsProperty {
DataStorage = new DataStorageProperty {
Unit = "unit",
// the properties below are optional
Maximum = 123,
Minimum = 123
},
EcpuPerSecond = new ECPUPerSecondProperty {
Maximum = 123,
Minimum = 123
}
};
Properties
DataStorage
The maximum data storage limit in the cache, expressed in Gigabytes.
public object? DataStorage { get; set; }
Property Value
Remarks
EcpuPerSecond
The number of ElastiCache Processing Units (ECPU) the cache can consume per second.
public object? EcpuPerSecond { get; set; }