Class CfnPaymentCredentialProvider

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.CfnPaymentCredentialProvider
All Implemented Interfaces:
IInspectable, IPaymentCredentialProviderRef, IEnvironmentAware, ITaggableV2, software.amazon.jsii.JsiiSerializable, software.constructs.IConstruct, software.constructs.IDependable

@Generated(value="jsii-pacmak/1.130.0 (build 048a5ee)", date="2026-05-21T17:27:31.484Z") @Stability(Stable) public class CfnPaymentCredentialProvider extends CfnResource implements IInspectable, IPaymentCredentialProviderRef, ITaggableV2
Resource Type definition for AWS::BedrockAgentCore::PaymentCredentialProvider.

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.*;
 CfnPaymentCredentialProvider cfnPaymentCredentialProvider = CfnPaymentCredentialProvider.Builder.create(this, "MyCfnPaymentCredentialProvider")
         .credentialProviderVendor("credentialProviderVendor")
         .name("name")
         // the properties below are optional
         .providerConfigurationInput(PaymentProviderConfigurationInputProperty.builder()
                 .coinbaseCdpConfiguration(CoinbaseCdpConfigurationInputProperty.builder()
                         .apiKeyId("apiKeyId")
                         .apiKeySecret("apiKeySecret")
                         // the properties below are optional
                         .walletSecret("walletSecret")
                         .build())
                 .stripePrivyConfiguration(StripePrivyConfigurationInputProperty.builder()
                         .appId("appId")
                         .appSecret("appSecret")
                         .authorizationId("authorizationId")
                         .authorizationPrivateKey("authorizationPrivateKey")
                         .build())
                 .build())
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .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

    • CfnPaymentCredentialProvider

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

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

      @Stability(Stable) public CfnPaymentCredentialProvider(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull CfnPaymentCredentialProviderProps props)
      Create a new AWS::BedrockAgentCore::PaymentCredentialProvider.

      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

    • isCfnPaymentCredentialProvider

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

      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.
    • getAttrCreatedTime

      @Stability(Stable) @NotNull public String getAttrCreatedTime()
      The timestamp when the credential provider was created.
    • getAttrCredentialProviderArn

      @Stability(Stable) @NotNull public String getAttrCredentialProviderArn()
      The Amazon Resource Name (ARN) of the payment credential provider.
    • getAttrLastUpdatedTime

      @Stability(Stable) @NotNull public String getAttrLastUpdatedTime()
      The timestamp when the credential provider was last updated.
    • getAttrProviderConfigurationOutput

      @Stability(Stable) @NotNull public IResolvable getAttrProviderConfigurationOutput()
      Provider configuration output containing secret ARNs (no raw secrets).
    • getCdkTagManager

      @Stability(Stable) @NotNull public TagManager getCdkTagManager()
      Tag Manager which manages the tags for this resource.
      Specified by:
      getCdkTagManager in interface ITaggableV2
    • 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
    • getPaymentCredentialProviderRef

      @Stability(Stable) @NotNull public PaymentCredentialProviderReference getPaymentCredentialProviderRef()
      A reference to a PaymentCredentialProvider resource.
      Specified by:
      getPaymentCredentialProviderRef in interface IPaymentCredentialProviderRef
    • getCredentialProviderVendor

      @Stability(Stable) @NotNull public String getCredentialProviderVendor()
      Supported vendor types for payment providers.
    • setCredentialProviderVendor

      @Stability(Stable) public void setCredentialProviderVendor(@NotNull String value)
      Supported vendor types for payment providers.
    • getName

      @Stability(Stable) @NotNull public String getName()
      Unique name for the payment credential provider.
    • setName

      @Stability(Stable) public void setName(@NotNull String value)
      Unique name for the payment credential provider.
    • getProviderConfigurationInput

      @Stability(Stable) @Nullable public Object getProviderConfigurationInput()
      Provider configuration input containing secrets for creation/update.

      Returns union: either IResolvable or CfnPaymentCredentialProvider.PaymentProviderConfigurationInputProperty

    • setProviderConfigurationInput

      @Stability(Stable) public void setProviderConfigurationInput(@Nullable IResolvable value)
      Provider configuration input containing secrets for creation/update.
    • setProviderConfigurationInput

      @Stability(Stable) public void setProviderConfigurationInput(@Nullable CfnPaymentCredentialProvider.PaymentProviderConfigurationInputProperty value)
      Provider configuration input containing secrets for creation/update.
    • getTags

      @Stability(Stable) @Nullable public List<CfnTag> getTags()
      Tags for the payment credential provider.
    • setTags

      @Stability(Stable) public void setTags(@Nullable List<CfnTag> value)
      Tags for the payment credential provider.