interface CacheUsageLimitsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ElastiCache.CfnServerlessCachePropsMixin.CacheUsageLimitsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awselasticache#CfnServerlessCachePropsMixin_CacheUsageLimitsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.elasticache.CfnServerlessCachePropsMixin.CacheUsageLimitsProperty |
Python | aws_cdk.cfn_property_mixins.aws_elasticache.CfnServerlessCachePropsMixin.CacheUsageLimitsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_elasticache » CfnServerlessCachePropsMixin » 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/cfn-property-mixins';
const cacheUsageLimitsProperty: elasticache.CfnServerlessCachePropsMixin.CacheUsageLimitsProperty = {
dataStorage: {
maximum: 123,
minimum: 123,
unit: 'unit',
},
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.

.NET
Go
Java
Python
TypeScript