interface CfnPaymentConnectorMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.BedrockAgentCore.CfnPaymentConnectorMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrockagentcore#CfnPaymentConnectorMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrockagentcore.CfnPaymentConnectorMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_bedrockagentcore.CfnPaymentConnectorMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrockagentcore » CfnPaymentConnectorMixinProps |
Properties for CfnPaymentConnectorPropsMixin.
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 cfnPaymentConnectorMixinProps: bedrockagentcore.CfnPaymentConnectorMixinProps = {
connectorName: 'connectorName',
connectorType: 'connectorType',
credentialProviderConfigurations: [{
coinbaseCdp: {
credentialProviderArn: 'credentialProviderArn',
},
stripePrivy: {
credentialProviderArn: 'credentialProviderArn',
},
}],
description: 'description',
paymentManagerId: 'paymentManagerId',
};
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. |
| description? | string | A description of the payment connector. |
| payment | string | The identifier of the parent payment manager. |
connectorName?
Type:
string
(optional)
The name of the payment connector.
connectorType?
Type:
string
(optional)
credentialProviderConfigurations?
Type:
IResolvable | (IResolvable | Credentials)[]
(optional)
The credential provider configurations for the connector.
description?
Type:
string
(optional)
A description of the payment connector.
paymentManagerId?
Type:
string
(optional)
The identifier of the parent payment manager.

.NET
Go
Java
Python
TypeScript