Class CfnWebACLPropsMixin.PaymentNetworkProperty
Configuration for a single payment network.
Implements
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.WAFv2
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnWebACLPropsMixin.PaymentNetworkProperty : CfnWebACLPropsMixin.IPaymentNetworkProperty
Syntax (vb)
Public Class CfnWebACLPropsMixin.PaymentNetworkProperty Implements CfnWebACLPropsMixin.IPaymentNetworkProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.WAFv2;
var paymentNetworkProperty = new PaymentNetworkProperty {
Chain = "chain",
Prices = new [] { new PriceProperty {
Amount = "amount",
Currency = "currency"
} },
WalletAddress = "walletAddress"
};
Synopsis
Constructors
| PaymentNetworkProperty() | Configuration for a single payment network. |
Properties
| Chain | The blockchain chain to use. |
| Prices | List of price configurations. |
| WalletAddress | The wallet address for receiving payments. |
Constructors
PaymentNetworkProperty()
Configuration for a single payment network.
public PaymentNetworkProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.WAFv2;
var paymentNetworkProperty = new PaymentNetworkProperty {
Chain = "chain",
Prices = new [] { new PriceProperty {
Amount = "amount",
Currency = "currency"
} },
WalletAddress = "walletAddress"
};
Properties
Chain
The blockchain chain to use.
public string? Chain { get; set; }
Property Value
Remarks
Prices
List of price configurations.
public object? Prices { get; set; }
Property Value
Remarks
WalletAddress
The wallet address for receiving payments.
public string? WalletAddress { get; set; }