interface CfnPaymentConnectorProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnPaymentConnectorProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnPaymentConnectorProps |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnPaymentConnectorProps |
Python | aws_cdk.aws_bedrockagentcore.CfnPaymentConnectorProps |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnPaymentConnectorProps |
Properties for defining a CfnPaymentConnector.
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 cfnPaymentConnectorProps: bedrockagentcore.CfnPaymentConnectorProps = {
connectorName: 'connectorName',
connectorType: 'connectorType',
credentialProviderConfigurations: [{
coinbaseCdp: {
credentialProviderArn: 'credentialProviderArn',
},
stripePrivy: {
credentialProviderArn: 'credentialProviderArn',
},
}],
paymentManagerId: 'paymentManagerId',
// the properties below are optional
description: 'description',
};
Properties
| Name | Type | Description |
|---|---|---|
| connector | string | The name of the payment connector. |
| connector | string | |
| credential | IResolvable | (IResolvable | Credentials)[] | The credential provider configurations for the connector. |
| payment | string | The identifier of the parent payment manager. |
| description? | string | A description of the payment connector. |
connectorName
Type:
string
The name of the payment connector.
connectorType
Type:
string
credentialProviderConfigurations
Type:
IResolvable | (IResolvable | Credentials)[]
The credential provider configurations for the connector.
paymentManagerId
Type:
string
The identifier of the parent payment manager.
description?
Type:
string
(optional)
A description of the payment connector.

.NET
Go
Java
Python
TypeScript