Interface CfnPaymentCredentialProvider.CoinbaseCdpConfigurationInputProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnPaymentCredentialProvider.CoinbaseCdpConfigurationInputProperty.Jsii$Proxy
Enclosing class:
CfnPaymentCredentialProvider

@Stability(Stable) public static interface CfnPaymentCredentialProvider.CoinbaseCdpConfigurationInputProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.bedrockagentcore.*;
 CoinbaseCdpConfigurationInputProperty coinbaseCdpConfigurationInputProperty = CoinbaseCdpConfigurationInputProperty.builder()
         .apiKeyId("apiKeyId")
         // the properties below are optional
         .apiKeySecret("apiKeySecret")
         .apiKeySecretConfig(SecretReferenceProperty.builder()
                 .jsonKey("jsonKey")
                 .secretId("secretId")
                 .build())
         .apiKeySecretSource("apiKeySecretSource")
         .walletSecret("walletSecret")
         .walletSecretConfig(SecretReferenceProperty.builder()
                 .jsonKey("jsonKey")
                 .secretId("secretId")
                 .build())
         .walletSecretSource("walletSecretSource")
         .build();
 

See Also: