interface RecurringChargeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MemoryDB.CfnReservedNode.RecurringChargeProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmemorydb#CfnReservedNode_RecurringChargeProperty |
Java | software.amazon.awscdk.services.memorydb.CfnReservedNode.RecurringChargeProperty |
Python | aws_cdk.aws_memorydb.CfnReservedNode.RecurringChargeProperty |
TypeScript | aws-cdk-lib » aws_memorydb » CfnReservedNode » RecurringChargeProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_memorydb as memorydb } from 'aws-cdk-lib';
const recurringChargeProperty: memorydb.CfnReservedNode.RecurringChargeProperty = {
recurringChargeAmount: 123,
recurringChargeFrequency: 'recurringChargeFrequency',
};
Properties
| Name | Type | Description |
|---|---|---|
| recurring | number | The amount of the recurring charge. |
| recurring | string | The frequency of the recurring charge. |
recurringChargeAmount?
Type:
number
(optional)
The amount of the recurring charge.
recurringChargeFrequency?
Type:
string
(optional)
The frequency of the recurring charge.

.NET
Go
Java
Python
TypeScript