interface PaymentProviderConfigurationOutputProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnPaymentCredentialProvider.PaymentProviderConfigurationOutputProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnPaymentCredentialProvider_PaymentProviderConfigurationOutputProperty |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnPaymentCredentialProvider.PaymentProviderConfigurationOutputProperty |
Python | aws_cdk.aws_bedrockagentcore.CfnPaymentCredentialProvider.PaymentProviderConfigurationOutputProperty |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnPaymentCredentialProvider » PaymentProviderConfigurationOutputProperty |
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 { aws_bedrockagentcore as bedrockagentcore } from 'aws-cdk-lib';
const paymentProviderConfigurationOutputProperty: bedrockagentcore.CfnPaymentCredentialProvider.PaymentProviderConfigurationOutputProperty = {
coinbaseCdpConfiguration: {
apiKeyId: 'apiKeyId',
apiKeySecretArn: {
secretArn: 'secretArn',
},
// the properties below are optional
walletSecretArn: {
secretArn: 'secretArn',
},
},
stripePrivyConfiguration: {
appId: 'appId',
appSecretArn: {
secretArn: 'secretArn',
},
authorizationId: 'authorizationId',
authorizationPrivateKeyArn: {
secretArn: 'secretArn',
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| coinbase | IResolvable | Coinbase | Coinbase CDP configuration output with secret ARNs. |
| stripe | IResolvable | Stripe | Stripe Privy configuration output with secret ARNs. |
coinbaseCdpConfiguration?
Type:
IResolvable | Coinbase
(optional)
Coinbase CDP configuration output with secret ARNs.
stripePrivyConfiguration?
Type:
IResolvable | Stripe
(optional)
Stripe Privy configuration output with secret ARNs.

.NET
Go
Java
Python
TypeScript