interface PaymentNetworkProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.WAFv2.CfnRuleGroupPropsMixin.PaymentNetworkProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awswafv2#CfnRuleGroupPropsMixin_PaymentNetworkProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.wafv2.CfnRuleGroupPropsMixin.PaymentNetworkProperty |
Python | aws_cdk.cfn_property_mixins.aws_wafv2.CfnRuleGroupPropsMixin.PaymentNetworkProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_wafv2 » CfnRuleGroupPropsMixin » PaymentNetworkProperty |
Configuration for a single payment network.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_wafv2 as wafv2 } from '@aws-cdk/cfn-property-mixins';
const paymentNetworkProperty: wafv2.CfnRuleGroupPropsMixin.PaymentNetworkProperty = {
chain: 'chain',
prices: [{
amount: 'amount',
currency: 'currency',
}],
walletAddress: 'walletAddress',
};
Properties
| Name | Type | Description |
|---|---|---|
| chain? | string | The blockchain chain to use. |
| prices? | IResolvable | (IResolvable | Price)[] | List of price configurations. |
| wallet | string | The wallet address for receiving payments. |
chain?
Type:
string
(optional)
The blockchain chain to use.
prices?
Type:
IResolvable | (IResolvable | Price)[]
(optional)
List of price configurations.
walletAddress?
Type:
string
(optional)
The wallet address for receiving payments.

.NET
Go
Java
Python
TypeScript