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',
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
(optional)
The Coinbase CDP API key ID.
apiKeySecret?
Type:
string
(optional)
The Coinbase CDP API key secret.
walletSecret?
Type:
string
(optional)
The Coinbase CDP wallet secret.

.NET
Go
Java
Python
TypeScript