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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnPaymentCredentialProvider.PaymentProviderConfigurationInputProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCoinbaseCdpConfiguration
Coinbase CDP configuration with API credentials.Returns union: either
IResolvableorCfnPaymentCredentialProvider.CoinbaseCdpConfigurationInputProperty- See Also:
-
getStripePrivyConfiguration
Stripe Privy configuration with credentials.Returns union: either
IResolvableorCfnPaymentCredentialProvider.StripePrivyConfigurationInputProperty- See Also:
-
builder
@Stability(Stable) static CfnPaymentCredentialProvider.PaymentProviderConfigurationInputProperty.Builder builder()
-