Interface CfnWebACL.MonetizationConfigProperty

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

@Stability(Stable) public static interface CfnWebACL.MonetizationConfigProperty extends software.amazon.jsii.JsiiSerializable
Configures monetization for the web ACL or rule group.

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.*;
 MonetizationConfigProperty monetizationConfigProperty = MonetizationConfigProperty.builder()
         .cryptoConfig(CryptoConfigProperty.builder()
                 .paymentNetworks(List.of(PaymentNetworkProperty.builder()
                         .chain("chain")
                         .prices(List.of(PriceProperty.builder()
                                 .amount("amount")
                                 .currency("currency")
                                 .build()))
                         .walletAddress("walletAddress")
                         .build()))
                 .build())
         .currencyMode("currencyMode")
         .build();
 

See Also: