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',
// the properties below are optional
apiKeySecret: 'apiKeySecret',
apiKeySecretConfig: {
jsonKey: 'jsonKey',
secretId: 'secretId',
},
apiKeySecretSource: 'apiKeySecretSource',
walletSecret: 'walletSecret',
walletSecretConfig: {
jsonKey: 'jsonKey',
secretId: 'secretId',
},
walletSecretSource: 'walletSecretSource',
};
Properties
| Name | Type | Description |
|---|---|---|
| api | string | The Coinbase CDP API key ID. |
| api | string | The Coinbase CDP API key secret. |
| api | IResolvable | Secret | A reference to a customer-provided secret stored in AWS Secrets Manager. |
| api | string | The source of the secret. |
| wallet | string | The Coinbase CDP wallet secret. |
| wallet | IResolvable | Secret | A reference to a customer-provided secret stored in AWS Secrets Manager. |
| wallet | string | The source of the secret. |
apiKeyId
Type:
string
The Coinbase CDP API key ID.
apiKeySecret?
Type:
string
(optional)
The Coinbase CDP API key secret.
apiKeySecretConfig?
Type:
IResolvable | Secret
(optional)
A reference to a customer-provided secret stored in AWS Secrets Manager.
apiKeySecretSource?
Type:
string
(optional)
The source of the secret.
Use MANAGED for service-managed secrets or EXTERNAL for customer-provided secrets.
walletSecret?
Type:
string
(optional)
The Coinbase CDP wallet secret.
walletSecretConfig?
Type:
IResolvable | Secret
(optional)
A reference to a customer-provided secret stored in AWS Secrets Manager.
walletSecretSource?
Type:
string
(optional)
The source of the secret.
Use MANAGED for service-managed secrets or EXTERNAL for customer-provided secrets.

.NET
Go
Java
Python
TypeScript