interface PaymentProviderConfigurationInputProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnPaymentCredentialProvider.PaymentProviderConfigurationInputProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnPaymentCredentialProvider_PaymentProviderConfigurationInputProperty |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnPaymentCredentialProvider.PaymentProviderConfigurationInputProperty |
Python | aws_cdk.aws_bedrockagentcore.CfnPaymentCredentialProvider.PaymentProviderConfigurationInputProperty |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnPaymentCredentialProvider » PaymentProviderConfigurationInputProperty |
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 { aws_bedrockagentcore as bedrockagentcore } from 'aws-cdk-lib';
const paymentProviderConfigurationInputProperty: bedrockagentcore.CfnPaymentCredentialProvider.PaymentProviderConfigurationInputProperty = {
coinbaseCdpConfiguration: {
apiKeyId: 'apiKeyId',
apiKeySecret: 'apiKeySecret',
// the properties below are optional
walletSecret: 'walletSecret',
},
stripePrivyConfiguration: {
appId: 'appId',
appSecret: 'appSecret',
authorizationId: 'authorizationId',
authorizationPrivateKey: 'authorizationPrivateKey',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| coinbase | IResolvable | Coinbase | Coinbase CDP configuration with API credentials. |
| stripe | IResolvable | Stripe | Stripe Privy configuration with credentials. |
coinbaseCdpConfiguration?
Type:
IResolvable | Coinbase
(optional)
Coinbase CDP configuration with API credentials.
stripePrivyConfiguration?
Type:
IResolvable | Stripe
(optional)
Stripe Privy configuration with credentials.

.NET
Go
Java
Python
TypeScript