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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnRuleGroup.CryptoConfigPropertystatic final classAn implementation forCfnRuleGroup.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: '<'eitherIResolvableorCfnRuleGroup.PaymentNetworkProperty>- See Also:
-
builder
-