Class CfnPaymentConnector

java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.CfnElement
software.amazon.awscdk.CfnRefElement
software.amazon.awscdk.CfnResource
software.amazon.awscdk.services.bedrockagentcore.CfnPaymentConnector
All Implemented Interfaces:
IInspectable, IPaymentConnectorRef, IEnvironmentAware, software.amazon.jsii.JsiiSerializable, software.constructs.IConstruct, software.constructs.IDependable

@Generated(value="jsii-pacmak/1.133.0 (build 0f43e37)", date="2026-06-16T16:14:19.711Z") @Stability(Stable) public class CfnPaymentConnector extends CfnResource implements IInspectable, IPaymentConnectorRef
Resource Type definition for AWS::BedrockAgentCore::PaymentConnector.

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.*;
 CfnPaymentConnector cfnPaymentConnector = CfnPaymentConnector.Builder.create(this, "MyCfnPaymentConnector")
         .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:
  • Field Details

    • CFN_RESOURCE_TYPE_NAME

      @Stability(Stable) public static final String CFN_RESOURCE_TYPE_NAME
      The CloudFormation resource type name for this resource class.
  • Constructor Details

    • CfnPaymentConnector

      protected CfnPaymentConnector(software.amazon.jsii.JsiiObjectRef objRef)
    • CfnPaymentConnector

      protected CfnPaymentConnector(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • CfnPaymentConnector

      @Stability(Stable) public CfnPaymentConnector(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull CfnPaymentConnectorProps props)
      Create a new AWS::BedrockAgentCore::PaymentConnector.

      Parameters:
      scope - Scope in which this resource is defined. This parameter is required.
      id - Construct identifier for this resource (unique in its scope). This parameter is required.
      props - Resource properties. This parameter is required.
  • Method Details

    • arnForPaymentConnector

      @Stability(Stable) @NotNull public static String arnForPaymentConnector(@NotNull IPaymentConnectorRef resource)
      Parameters:
      resource - This parameter is required.
    • isCfnPaymentConnector

      @Stability(Stable) @NotNull public static Boolean isCfnPaymentConnector(@NotNull Object x)
      Checks whether the given object is a CfnPaymentConnector.

      Parameters:
      x - This parameter is required.
    • inspect

      @Stability(Stable) public void inspect(@NotNull TreeInspector inspector)
      Examines the CloudFormation resource and discloses attributes.

      Specified by:
      inspect in interface IInspectable
      Parameters:
      inspector - tree inspector to collect and process attributes. This parameter is required.
    • renderProperties

      @Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String,Object> props)
      Overrides:
      renderProperties in class CfnResource
      Parameters:
      props - This parameter is required.
    • getAttrConnectorCreatedAt

      @Stability(Stable) @NotNull public String getAttrConnectorCreatedAt()
      The timestamp when the connector was created.
    • getAttrConnectorLastUpdatedAt

      @Stability(Stable) @NotNull public String getAttrConnectorLastUpdatedAt()
      The timestamp when the connector was last updated.
    • getAttrConnectorStatus

      @Stability(Stable) @NotNull public String getAttrConnectorStatus()
    • getAttrPaymentConnectorArn

      @Stability(Stable) @NotNull public String getAttrPaymentConnectorArn()
      Synthetic ARN for the payment connector (used for engine resolution).
    • getAttrPaymentConnectorId

      @Stability(Stable) @NotNull public String getAttrPaymentConnectorId()
      The unique identifier for the payment connector.
    • getCfnProperties

      @Stability(Stable) @NotNull protected Map<String,Object> getCfnProperties()
      Overrides:
      getCfnProperties in class CfnResource
    • getCfnPropertyNames

      @Stability(Stable) @NotNull protected Map<String,String> getCfnPropertyNames()
      Overrides:
      getCfnPropertyNames in class CfnResource
    • getPaymentConnectorRef

      @Stability(Stable) @NotNull public PaymentConnectorReference getPaymentConnectorRef()
      A reference to a PaymentConnector resource.
      Specified by:
      getPaymentConnectorRef in interface IPaymentConnectorRef
    • getConnectorName

      @Stability(Stable) @NotNull public String getConnectorName()
      The name of the payment connector.
    • setConnectorName

      @Stability(Stable) public void setConnectorName(@NotNull String value)
      The name of the payment connector.
    • getConnectorType

      @Stability(Stable) @NotNull public String getConnectorType()
    • setConnectorType

      @Stability(Stable) public void setConnectorType(@NotNull String value)
    • getCredentialProviderConfigurations

      @Stability(Stable) @NotNull public Object getCredentialProviderConfigurations()
      The credential provider configurations for the connector.

      Returns union: either IResolvable or Listinvalid input: '<'either IResolvable or CfnPaymentConnector.CredentialsProviderConfigurationProperty>

    • setCredentialProviderConfigurations

      @Stability(Stable) public void setCredentialProviderConfigurations(@NotNull IResolvable value)
      The credential provider configurations for the connector.
    • setCredentialProviderConfigurations

      @Stability(Stable) public void setCredentialProviderConfigurations(@NotNull List<Object> value)
      The credential provider configurations for the connector.
    • getPaymentManagerId

      @Stability(Stable) @NotNull public String getPaymentManagerId()
      The identifier of the parent payment manager.
    • setPaymentManagerId

      @Stability(Stable) public void setPaymentManagerId(@NotNull String value)
      The identifier of the parent payment manager.
    • getDescription

      @Stability(Stable) @Nullable public String getDescription()
      A description of the payment connector.
    • setDescription

      @Stability(Stable) public void setDescription(@Nullable String value)
      A description of the payment connector.