Show / Hide Table of Contents

Class CfnWebACL.CryptoConfigProperty

Configures cryptocurrency payment settings.

Inheritance
object
CfnWebACL.CryptoConfigProperty
Implements
CfnWebACL.ICryptoConfigProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-cryptoconfig.html

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-cryptoconfig.html

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; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-cryptoconfig.html#cfn-wafv2-webacl-cryptoconfig-paymentnetworks

Type union: either IResolvable or (either IResolvable or CfnWebACL.IPaymentNetworkProperty)[]

Implements

CfnWebACL.ICryptoConfigProperty
Back to top Generated by DocFX