Interface CfnPaymentConnectorProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnPaymentConnectorProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.133.0 (build 0f43e37)", date="2026-06-16T16:14:19.712Z") @Stability(Stable) public interface CfnPaymentConnectorProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnPaymentConnector.

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.*;
 CfnPaymentConnectorProps cfnPaymentConnectorProps = CfnPaymentConnectorProps.builder()
         .connectorName("connectorName")
         .connectorType("connectorType")
         .credentialProviderConfigurations(List.of(CredentialsProviderConfigurationProperty.builder()
                 .coinbaseCdp(PaymentCredentialProviderConfigurationProperty.builder()
                         .credentialProviderArn("credentialProviderArn")
                         .build())
                 .stripePrivy(PaymentCredentialProviderConfigurationProperty.builder()
                         .credentialProviderArn("credentialProviderArn")
                         .build())
                 .build()))
         .paymentManagerId("paymentManagerId")
         // the properties below are optional
         .description("description")
         .build();
 

See Also: