interface CoinbaseCdpConfigurationInputProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnPaymentCredentialProvider.CoinbaseCdpConfigurationInputProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnPaymentCredentialProvider_CoinbaseCdpConfigurationInputProperty |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnPaymentCredentialProvider.CoinbaseCdpConfigurationInputProperty |
Python | aws_cdk.aws_bedrockagentcore.CfnPaymentCredentialProvider.CoinbaseCdpConfigurationInputProperty |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnPaymentCredentialProvider » CoinbaseCdpConfigurationInputProperty |
Coinbase CDP configuration with API credentials.
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 coinbaseCdpConfigurationInputProperty: bedrockagentcore.CfnPaymentCredentialProvider.CoinbaseCdpConfigurationInputProperty = {
apiKeyId: 'apiKeyId',
apiKeySecret: 'apiKeySecret',
// the properties below are optional
walletSecret: 'walletSecret',
};
Properties
| Name | Type | Description |
|---|---|---|
| api | string | The Coinbase CDP API key ID. |
| api | string | The Coinbase CDP API key secret. |
| wallet | string | The Coinbase CDP wallet secret. |
apiKeyId
Type:
string
The Coinbase CDP API key ID.
apiKeySecret
Type:
string
The Coinbase CDP API key secret.
walletSecret?
Type:
string
(optional)
The Coinbase CDP wallet secret.

.NET
Go
Java
Python
TypeScript