interface ECPUPerSecondProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ElastiCache.Mixins.CfnServerlessCachePropsMixin.ECPUPerSecondProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awselasticache/mixins#CfnServerlessCachePropsMixin_ECPUPerSecondProperty |
Java | software.amazon.awscdk.mixins.preview.services.elasticache.mixins.CfnServerlessCachePropsMixin.ECPUPerSecondProperty |
Python | aws_cdk.mixins_preview.aws_elasticache.mixins.CfnServerlessCachePropsMixin.ECPUPerSecondProperty |
TypeScript | @aws-cdk/mixins-preview » aws_elasticache » mixins » CfnServerlessCachePropsMixin » ECPUPerSecondProperty |
The configuration for the number of ElastiCache Processing Units (ECPU) the cache can consume per second.
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 eCPUPerSecondProperty: elasticache_mixins.CfnServerlessCachePropsMixin.ECPUPerSecondProperty = {
maximum: 123,
minimum: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| maximum? | number | The configuration for the maximum number of ECPUs the cache can consume per second. |
| minimum? | number | The configuration for the minimum number of ECPUs the cache should be able consume per second. |
maximum?
Type:
number
(optional)
The configuration for the maximum number of ECPUs the cache can consume per second.
minimum?
Type:
number
(optional)
The configuration for the minimum number of ECPUs the cache should be able consume per second.

.NET
Go
Java
Python
TypeScript