interface CacheUsageLimitsProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.ElastiCache.CfnServerlessCache.CacheUsageLimitsProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awselasticache#CfnServerlessCache_CacheUsageLimitsProperty |
![]() | software.amazon.awscdk.services.elasticache.CfnServerlessCache.CacheUsageLimitsProperty |
![]() | aws_cdk.aws_elasticache.CfnServerlessCache.CacheUsageLimitsProperty |
![]() | aws-cdk-lib » aws_elasticache » CfnServerlessCache » CacheUsageLimitsProperty |
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 { aws_elasticache as elasticache } from 'aws-cdk-lib';
const cacheUsageLimitsProperty: elasticache.CfnServerlessCache.CacheUsageLimitsProperty = {
dataStorage: {
unit: 'unit',
// the properties below are optional
maximum: 123,
minimum: 123,
},
ecpuPerSecond: {
maximum: 123,
minimum: 123,
},
};
Properties
Name | Type | Description |
---|---|---|
data | IResolvable | Data | The maximum data storage limit in the cache, expressed in Gigabytes. |
ecpu | IResolvable | ECPUPer | The number of ElastiCache Processing Units (ECPU) the cache can consume per second. |
dataStorage?
Type:
IResolvable
|
Data
(optional)
The maximum data storage limit in the cache, expressed in Gigabytes.
ecpuPerSecond?
Type:
IResolvable
|
ECPUPer
(optional)
The number of ElastiCache Processing Units (ECPU) the cache can consume per second.