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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnPaymentConnectorPropsstatic final classAn implementation forCfnPaymentConnectorProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getConnectorName
The name of the payment connector.- See Also:
-
getConnectorType
- See Also:
-
getCredentialProviderConfigurations
The credential provider configurations for the connector.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnPaymentConnector.CredentialsProviderConfigurationProperty>- See Also:
-
getPaymentManagerId
The identifier of the parent payment manager.- See Also:
-
getDescription
A description of the payment connector.- See Also:
-
builder
- Returns:
- a
CfnPaymentConnectorProps.BuilderofCfnPaymentConnectorProps
-