interface CfnPaymentCredentialProviderProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnPaymentCredentialProviderProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnPaymentCredentialProviderProps |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnPaymentCredentialProviderProps |
Python | aws_cdk.aws_bedrockagentcore.CfnPaymentCredentialProviderProps |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnPaymentCredentialProviderProps |
Properties for defining a CfnPaymentCredentialProvider.
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 cfnPaymentCredentialProviderProps: bedrockagentcore.CfnPaymentCredentialProviderProps = {
credentialProviderVendor: 'credentialProviderVendor',
name: 'name',
// the properties below are optional
providerConfigurationInput: {
coinbaseCdpConfiguration: {
apiKeyId: 'apiKeyId',
apiKeySecret: 'apiKeySecret',
// the properties below are optional
walletSecret: 'walletSecret',
},
stripePrivyConfiguration: {
appId: 'appId',
appSecret: 'appSecret',
authorizationId: 'authorizationId',
authorizationPrivateKey: 'authorizationPrivateKey',
},
},
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| credential | string | Supported vendor types for payment providers. |
| name | string | Unique name for the payment credential provider. |
| provider | IResolvable | Payment | Provider configuration input containing secrets for creation/update. |
| tags? | Cfn[] | Tags for the payment credential provider. |
credentialProviderVendor
Type:
string
Supported vendor types for payment providers.
name
Type:
string
Unique name for the payment credential provider.
providerConfigurationInput?
Type:
IResolvable | Payment
(optional)
Provider configuration input containing secrets for creation/update.
tags?
Type:
Cfn[]
(optional)
Tags for the payment credential provider.

.NET
Go
Java
Python
TypeScript