interface PaymentNetworkProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.WAFv2.CfnRuleGroup.PaymentNetworkProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awswafv2#CfnRuleGroup_PaymentNetworkProperty |
Java | software.amazon.awscdk.services.wafv2.CfnRuleGroup.PaymentNetworkProperty |
Python | aws_cdk.aws_wafv2.CfnRuleGroup.PaymentNetworkProperty |
TypeScript | aws-cdk-lib » aws_wafv2 » CfnRuleGroup » 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-lib';
const paymentNetworkProperty: wafv2.CfnRuleGroup.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
The blockchain chain to use.
prices
Type:
IResolvable | (IResolvable | Price)[]
List of price configurations.
walletAddress
Type:
string
The wallet address for receiving payments.

.NET
Go
Java
Python
TypeScript