Interface CfnRuleGroup.CryptoConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnRuleGroup.CryptoConfigProperty.Jsii$Proxy
Enclosing class:
CfnRuleGroup

@Stability(Stable) public static interface CfnRuleGroup.CryptoConfigProperty extends software.amazon.jsii.JsiiSerializable
Configures cryptocurrency payment settings.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.wafv2.*;
 CryptoConfigProperty cryptoConfigProperty = CryptoConfigProperty.builder()
         .paymentNetworks(List.of(PaymentNetworkProperty.builder()
                 .chain("chain")
                 .prices(List.of(PriceProperty.builder()
                         .amount("amount")
                         .currency("currency")
                         .build()))
                 .walletAddress("walletAddress")
                 .build()))
         .build();
 

See Also: