Interface CfnPaymentCredentialProviderPropsMixin.CoinbaseCdpConfigurationOutputProperty

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

@Stability(Stable) public static interface CfnPaymentCredentialProviderPropsMixin.CoinbaseCdpConfigurationOutputProperty extends software.amazon.jsii.JsiiSerializable
Coinbase CDP configuration output with secret ARNs.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.bedrockagentcore.*;
 CoinbaseCdpConfigurationOutputProperty coinbaseCdpConfigurationOutputProperty = CoinbaseCdpConfigurationOutputProperty.builder()
         .apiKeyId("apiKeyId")
         .apiKeySecretArn(SecretInfoProperty.builder()
                 .secretArn("secretArn")
                 .build())
         .walletSecretArn(SecretInfoProperty.builder()
                 .secretArn("secretArn")
                 .build())
         .build();
 

See Also: