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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnPaymentCredentialProvider.CoinbaseCdpConfigurationInputProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The Coinbase CDP API key ID.default StringThe Coinbase CDP API key secret.default ObjectA reference to a customer-provided secret stored in AWS Secrets Manager.default StringThe source of the secret.default StringThe Coinbase CDP wallet secret.default ObjectA reference to a customer-provided secret stored in AWS Secrets Manager.default StringThe source of the secret.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getApiKeyId
The Coinbase CDP API key ID.- See Also:
-
getApiKeySecret
The Coinbase CDP API key secret.- See Also:
-
getApiKeySecretConfig
A reference to a customer-provided secret stored in AWS Secrets Manager.Returns union: either
IResolvableorCfnPaymentCredentialProvider.SecretReferenceProperty- See Also:
-
getApiKeySecretSource
The source of the secret.Use MANAGED for service-managed secrets or EXTERNAL for customer-provided secrets.
- See Also:
-
getWalletSecret
The Coinbase CDP wallet secret.- See Also:
-
getWalletSecretConfig
A reference to a customer-provided secret stored in AWS Secrets Manager.Returns union: either
IResolvableorCfnPaymentCredentialProvider.SecretReferenceProperty- See Also:
-
getWalletSecretSource
The source of the secret.Use MANAGED for service-managed secrets or EXTERNAL for customer-provided secrets.
- See Also:
-
builder
@Stability(Stable) static CfnPaymentCredentialProvider.CoinbaseCdpConfigurationInputProperty.Builder builder()
-