Interface CfnPaymentCredentialProvider.CoinbaseCdpConfigurationOutputProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPaymentCredentialProvider.CoinbaseCdpConfigurationOutputProperty.Jsii$Proxy
- Enclosing class:
CfnPaymentCredentialProvider
@Stability(Stable)
public static interface CfnPaymentCredentialProvider.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.services.bedrockagentcore.*;
CoinbaseCdpConfigurationOutputProperty coinbaseCdpConfigurationOutputProperty = CoinbaseCdpConfigurationOutputProperty.builder()
.apiKeyId("apiKeyId")
.apiKeySecretArn(SecretInfoProperty.builder()
.secretArn("secretArn")
.build())
// the properties below are optional
.apiKeySecretJsonKey("apiKeySecretJsonKey")
.apiKeySecretSource("apiKeySecretSource")
.walletSecretArn(SecretInfoProperty.builder()
.secretArn("secretArn")
.build())
.walletSecretJsonKey("walletSecretJsonKey")
.walletSecretSource("walletSecretSource")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnPaymentCredentialProvider.CoinbaseCdpConfigurationOutputProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The Coinbase CDP API key ID.Contains information about a secret in AWS Secrets Manager.default StringThe JSON key within the secret that contains the API key secret value.default StringThe source of the secret.default ObjectContains information about a secret in AWS Secrets Manager.default StringThe JSON key within the secret that contains the wallet secret value.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:
-
getApiKeySecretArn
Contains information about a secret in AWS Secrets Manager.Returns union: either
IResolvableorCfnPaymentCredentialProvider.SecretInfoProperty- See Also:
-
getApiKeySecretJsonKey
The JSON key within the secret that contains the API key secret value.- See Also:
-
getApiKeySecretSource
The source of the secret.Use MANAGED for service-managed secrets or EXTERNAL for customer-provided secrets.
- See Also:
-
getWalletSecretArn
Contains information about a secret in AWS Secrets Manager.Returns union: either
IResolvableorCfnPaymentCredentialProvider.SecretInfoProperty- See Also:
-
getWalletSecretJsonKey
The JSON key within the secret that contains the wallet secret value.- 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.CoinbaseCdpConfigurationOutputProperty.Builder builder()
-