interface CoinbaseCdpConfigurationInputProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.BedrockAgentCore.CfnPaymentCredentialProviderPropsMixin.CoinbaseCdpConfigurationInputProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrockagentcore#CfnPaymentCredentialProviderPropsMixin_CoinbaseCdpConfigurationInputProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrockagentcore.CfnPaymentCredentialProviderPropsMixin.CoinbaseCdpConfigurationInputProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrockagentcore.CfnPaymentCredentialProviderPropsMixin.CoinbaseCdpConfigurationInputProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrockagentcore » CfnPaymentCredentialProviderPropsMixin » 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/cfn-property-mixins';
const coinbaseCdpConfigurationInputProperty: bedrockagentcore.CfnPaymentCredentialProviderPropsMixin.CoinbaseCdpConfigurationInputProperty = {
apiKeyId: 'apiKeyId',
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
(optional)
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