interface RecurringChargeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ElastiCache.CfnReservedCacheNode.RecurringChargeProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awselasticache#CfnReservedCacheNode_RecurringChargeProperty |
Java | software.amazon.awscdk.services.elasticache.CfnReservedCacheNode.RecurringChargeProperty |
Python | aws_cdk.aws_elasticache.CfnReservedCacheNode.RecurringChargeProperty |
TypeScript | aws-cdk-lib » aws_elasticache » CfnReservedCacheNode » RecurringChargeProperty |
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 recurringChargeProperty: elasticache.CfnReservedCacheNode.RecurringChargeProperty = {
recurringChargeAmount: 123,
recurringChargeFrequency: 'recurringChargeFrequency',
};
Properties
| Name | Type | Description |
|---|---|---|
| recurring | number | The monetary amount of the recurring charge. |
| recurring | string | The frequency of the recurring charge. |
recurringChargeAmount?
Type:
number
(optional)
The monetary amount of the recurring charge.
recurringChargeFrequency?
Type:
string
(optional)
The frequency of the recurring charge.

.NET
Go
Java
Python
TypeScript