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