Interface CfnPaymentCredentialProvider.PaymentProviderConfigurationOutputProperty

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

@Stability(Stable) public static interface CfnPaymentCredentialProvider.PaymentProviderConfigurationOutputProperty extends software.amazon.jsii.JsiiSerializable
Provider configuration output containing secret ARNs (no raw secrets).

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.*;
 PaymentProviderConfigurationOutputProperty paymentProviderConfigurationOutputProperty = PaymentProviderConfigurationOutputProperty.builder()
         .coinbaseCdpConfiguration(CoinbaseCdpConfigurationOutputProperty.builder()
                 .apiKeyId("apiKeyId")
                 .apiKeySecretArn(SecretInfoProperty.builder()
                         .secretArn("secretArn")
                         .build())
                 // the properties below are optional
                 .walletSecretArn(SecretInfoProperty.builder()
                         .secretArn("secretArn")
                         .build())
                 .build())
         .stripePrivyConfiguration(StripePrivyConfigurationOutputProperty.builder()
                 .appId("appId")
                 .appSecretArn(SecretInfoProperty.builder()
                         .secretArn("secretArn")
                         .build())
                 .authorizationId("authorizationId")
                 .authorizationPrivateKeyArn(SecretInfoProperty.builder()
                         .secretArn("secretArn")
                         .build())
                 .build())
         .build();
 

See Also: