Interface CfnPaymentCredentialProvider.PaymentProviderConfigurationInputProperty

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

@Stability(Stable) public static interface CfnPaymentCredentialProvider.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.services.bedrockagentcore.*;
 PaymentProviderConfigurationInputProperty paymentProviderConfigurationInputProperty = PaymentProviderConfigurationInputProperty.builder()
         .coinbaseCdpConfiguration(CoinbaseCdpConfigurationInputProperty.builder()
                 .apiKeyId("apiKeyId")
                 .apiKeySecret("apiKeySecret")
                 // the properties below are optional
                 .walletSecret("walletSecret")
                 .build())
         .stripePrivyConfiguration(StripePrivyConfigurationInputProperty.builder()
                 .appId("appId")
                 .appSecret("appSecret")
                 .authorizationId("authorizationId")
                 .authorizationPrivateKey("authorizationPrivateKey")
                 .build())
         .build();
 

See Also: