Interface CfnPaymentCredentialProvider.PaymentProviderConfigurationOutputProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPaymentCredentialProvider.PaymentProviderConfigurationOutputProperty.Jsii$Proxy
- Enclosing class:
CfnPaymentCredentialProvider
@Stability(Stable)
public static interface CfnPaymentCredentialProvider.PaymentProviderConfigurationOutputProperty
extends software.amazon.jsii.JsiiSerializable
Provider configuration output containing secret ARNs (no raw secrets).
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.*;
PaymentProviderConfigurationOutputProperty paymentProviderConfigurationOutputProperty = PaymentProviderConfigurationOutputProperty.builder()
.coinbaseCdpConfiguration(CoinbaseCdpConfigurationOutputProperty.builder()
.apiKeyId("apiKeyId")
.apiKeySecretArn(SecretInfoProperty.builder()
.secretArn("secretArn")
.build())
// the properties below are optional
.walletSecretArn(SecretInfoProperty.builder()
.secretArn("secretArn")
.build())
.build())
.stripePrivyConfiguration(StripePrivyConfigurationOutputProperty.builder()
.appId("appId")
.appSecretArn(SecretInfoProperty.builder()
.secretArn("secretArn")
.build())
.authorizationId("authorizationId")
.authorizationPrivateKeyArn(SecretInfoProperty.builder()
.secretArn("secretArn")
.build())
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnPaymentCredentialProvider.PaymentProviderConfigurationOutputProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCoinbaseCdpConfiguration
Coinbase CDP configuration output with secret ARNs.Returns union: either
IResolvableorCfnPaymentCredentialProvider.CoinbaseCdpConfigurationOutputProperty- See Also:
-
getStripePrivyConfiguration
Stripe Privy configuration output with secret ARNs.Returns union: either
IResolvableorCfnPaymentCredentialProvider.StripePrivyConfigurationOutputProperty- See Also:
-
builder
@Stability(Stable) static CfnPaymentCredentialProvider.PaymentProviderConfigurationOutputProperty.Builder builder()
-