interface CoinbaseCdpConfigurationOutputProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnPaymentCredentialProvider.CoinbaseCdpConfigurationOutputProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnPaymentCredentialProvider_CoinbaseCdpConfigurationOutputProperty |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnPaymentCredentialProvider.CoinbaseCdpConfigurationOutputProperty |
Python | aws_cdk.aws_bedrockagentcore.CfnPaymentCredentialProvider.CoinbaseCdpConfigurationOutputProperty |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnPaymentCredentialProvider » 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-lib';
const coinbaseCdpConfigurationOutputProperty: bedrockagentcore.CfnPaymentCredentialProvider.CoinbaseCdpConfigurationOutputProperty = {
apiKeyId: 'apiKeyId',
apiKeySecretArn: {
secretArn: 'secretArn',
},
// the properties below are optional
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
The Coinbase CDP API key ID.
apiKeySecretArn
Type:
IResolvable | Secret
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