interface CoinbaseCdpConfigurationOutputProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.BedrockAgentCore.CfnPaymentCredentialProviderPropsMixin.CoinbaseCdpConfigurationOutputProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrockagentcore#CfnPaymentCredentialProviderPropsMixin_CoinbaseCdpConfigurationOutputProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrockagentcore.CfnPaymentCredentialProviderPropsMixin.CoinbaseCdpConfigurationOutputProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrockagentcore.CfnPaymentCredentialProviderPropsMixin.CoinbaseCdpConfigurationOutputProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrockagentcore » CfnPaymentCredentialProviderPropsMixin » CoinbaseCdpConfigurationOutputProperty |
Coinbase CDP configuration output with secret ARNs.
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 coinbaseCdpConfigurationOutputProperty: bedrockagentcore.CfnPaymentCredentialProviderPropsMixin.CoinbaseCdpConfigurationOutputProperty = {
apiKeyId: 'apiKeyId',
apiKeySecretArn: {
secretArn: 'secretArn',
},
walletSecretArn: {
secretArn: 'secretArn',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| api | string | The Coinbase CDP API key ID. |
| api | IResolvable | Secret | Contains information about a secret in AWS Secrets Manager. |
| wallet | IResolvable | Secret | Contains information about a secret in AWS Secrets Manager. |
apiKeyId?
Type:
string
(optional)
The Coinbase CDP API key ID.
apiKeySecretArn?
Type:
IResolvable | Secret
(optional)
Contains information about a secret in AWS Secrets Manager.
walletSecretArn?
Type:
IResolvable | Secret
(optional)
Contains information about a secret in AWS Secrets Manager.

.NET
Go
Java
Python
TypeScript