Interface CfnRuleGroupPropsMixin.CryptoConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRuleGroupPropsMixin.CryptoConfigProperty.Jsii$Proxy
- Enclosing class:
CfnRuleGroupPropsMixin
@Stability(Stable)
public static interface CfnRuleGroupPropsMixin.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.cfnpropertymixins.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 forCfnRuleGroupPropsMixin.CryptoConfigPropertystatic final classAn implementation forCfnRuleGroupPropsMixin.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: '<'eitherIResolvableorCfnRuleGroupPropsMixin.PaymentNetworkProperty>- See Also:
-
builder
-