Interface CfnPaymentCredentialProviderPropsMixin.PaymentProviderConfigurationInputProperty

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

@Stability(Stable) public static interface CfnPaymentCredentialProviderPropsMixin.PaymentProviderConfigurationInputProperty extends software.amazon.jsii.JsiiSerializable
Provider configuration input containing secrets for creation/update.

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.bedrockagentcore.*;
 PaymentProviderConfigurationInputProperty paymentProviderConfigurationInputProperty = PaymentProviderConfigurationInputProperty.builder()
         .coinbaseCdpConfiguration(CoinbaseCdpConfigurationInputProperty.builder()
                 .apiKeyId("apiKeyId")
                 .apiKeySecret("apiKeySecret")
                 .walletSecret("walletSecret")
                 .build())
         .stripePrivyConfiguration(StripePrivyConfigurationInputProperty.builder()
                 .appId("appId")
                 .appSecret("appSecret")
                 .authorizationId("authorizationId")
                 .authorizationPrivateKey("authorizationPrivateKey")
                 .build())
         .build();
 

See Also: