interface CacheUsageLimitsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ElastiCache.Mixins.CfnServerlessCachePropsMixin.CacheUsageLimitsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awselasticache/mixins#CfnServerlessCachePropsMixin_CacheUsageLimitsProperty |
Java | software.amazon.awscdk.mixins.preview.services.elasticache.mixins.CfnServerlessCachePropsMixin.CacheUsageLimitsProperty |
Python | aws_cdk.mixins_preview.aws_elasticache.mixins.CfnServerlessCachePropsMixin.CacheUsageLimitsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_elasticache » mixins » 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 { mixins as elasticache_mixins } from '@aws-cdk/mixins-preview/aws-elasticache';
const cacheUsageLimitsProperty: elasticache_mixins.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