Class CfnWebACL.CryptoConfigProperty
Configures cryptocurrency payment settings.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.WAFv2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnWebACL.CryptoConfigProperty : CfnWebACL.ICryptoConfigProperty
Syntax (vb)
Public Class CfnWebACL.CryptoConfigProperty Implements CfnWebACL.ICryptoConfigProperty
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.AWS.WAFv2;
var cryptoConfigProperty = new CryptoConfigProperty {
PaymentNetworks = new [] { new PaymentNetworkProperty {
Chain = "chain",
Prices = new [] { new PriceProperty {
Amount = "amount",
Currency = "currency"
} },
WalletAddress = "walletAddress"
} }
};
Synopsis
Constructors
| CryptoConfigProperty() | Configures cryptocurrency payment settings. |
Properties
| PaymentNetworks | List of payment network configurations. |
Constructors
CryptoConfigProperty()
Configures cryptocurrency payment settings.
public CryptoConfigProperty()
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.AWS.WAFv2;
var cryptoConfigProperty = new CryptoConfigProperty {
PaymentNetworks = new [] { new PaymentNetworkProperty {
Chain = "chain",
Prices = new [] { new PriceProperty {
Amount = "amount",
Currency = "currency"
} },
WalletAddress = "walletAddress"
} }
};
Properties
PaymentNetworks
List of payment network configurations.
public object PaymentNetworks { get; set; }