Interface CfnRuleGroup.PaymentNetworkProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRuleGroup.PaymentNetworkProperty.Jsii$Proxy
- Enclosing class:
CfnRuleGroup
@Stability(Stable)
public static interface CfnRuleGroup.PaymentNetworkProperty
extends software.amazon.jsii.JsiiSerializable
Configuration for a single payment network.
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.*;
PaymentNetworkProperty paymentNetworkProperty = PaymentNetworkProperty.builder()
.chain("chain")
.prices(List.of(PriceProperty.builder()
.amount("amount")
.currency("currency")
.build()))
.walletAddress("walletAddress")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnRuleGroup.PaymentNetworkPropertystatic final classAn implementation forCfnRuleGroup.PaymentNetworkProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getChain
The blockchain chain to use.- See Also:
-
getPrices
List of price configurations.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnRuleGroup.PriceProperty>- See Also:
-
getWalletAddress
The wallet address for receiving payments.- See Also:
-
builder
-