interface ECPUPerSecondProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ElastiCache.CfnServerlessCachePropsMixin.ECPUPerSecondProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awselasticache#CfnServerlessCachePropsMixin_ECPUPerSecondProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.elasticache.CfnServerlessCachePropsMixin.ECPUPerSecondProperty |
Python | aws_cdk.cfn_property_mixins.aws_elasticache.CfnServerlessCachePropsMixin.ECPUPerSecondProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_elasticache » 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 { aws_elasticache as elasticache } from '@aws-cdk/cfn-property-mixins';
const eCPUPerSecondProperty: elasticache.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