interface CfnPaymentCredentialProviderMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.BedrockAgentCore.CfnPaymentCredentialProviderMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrockagentcore#CfnPaymentCredentialProviderMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrockagentcore.CfnPaymentCredentialProviderMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_bedrockagentcore.CfnPaymentCredentialProviderMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrockagentcore » CfnPaymentCredentialProviderMixinProps |
Properties for CfnPaymentCredentialProviderPropsMixin.
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 cfnPaymentCredentialProviderMixinProps: bedrockagentcore.CfnPaymentCredentialProviderMixinProps = {
credentialProviderVendor: 'credentialProviderVendor',
name: 'name',
providerConfigurationInput: {
coinbaseCdpConfiguration: {
apiKeyId: 'apiKeyId',
apiKeySecret: 'apiKeySecret',
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
(optional)
Supported vendor types for payment providers.
name?
Type:
string
(optional)
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