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