Interface CfnWebACL.CryptoConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnWebACL.CryptoConfigProperty.Jsii$Proxy
- Enclosing class:
CfnWebACL
@Stability(Stable)
public static interface CfnWebACL.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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnWebACL.CryptoConfigPropertystatic final classAn implementation forCfnWebACL.CryptoConfigProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getPaymentNetworks
List of payment network configurations.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnWebACL.PaymentNetworkProperty>- See Also:
-
builder
-