interface PaymentProviderConfigurationOutputProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.BedrockAgentCore.CfnPaymentCredentialProviderPropsMixin.PaymentProviderConfigurationOutputProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrockagentcore#CfnPaymentCredentialProviderPropsMixin_PaymentProviderConfigurationOutputProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrockagentcore.CfnPaymentCredentialProviderPropsMixin.PaymentProviderConfigurationOutputProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrockagentcore.CfnPaymentCredentialProviderPropsMixin.PaymentProviderConfigurationOutputProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrockagentcore » CfnPaymentCredentialProviderPropsMixin » 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/cfn-property-mixins';
const paymentProviderConfigurationOutputProperty: bedrockagentcore.CfnPaymentCredentialProviderPropsMixin.PaymentProviderConfigurationOutputProperty = {
coinbaseCdpConfiguration: {
apiKeyId: 'apiKeyId',
apiKeySecretArn: {
secretArn: 'secretArn',
},
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