Interface CfnPaymentConnector.CredentialsProviderConfigurationProperty

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

@Stability(Stable) public static interface CfnPaymentConnector.CredentialsProviderConfigurationProperty extends software.amazon.jsii.JsiiSerializable
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.*;
 CredentialsProviderConfigurationProperty credentialsProviderConfigurationProperty = CredentialsProviderConfigurationProperty.builder()
         .coinbaseCdp(PaymentCredentialProviderConfigurationProperty.builder()
                 .credentialProviderArn("credentialProviderArn")
                 .build())
         .stripePrivy(PaymentCredentialProviderConfigurationProperty.builder()
                 .credentialProviderArn("credentialProviderArn")
                 .build())
         .build();
 

See Also: