CfnPaymentCredentialProviderMixinProps

class aws_cdk.cfn_property_mixins.aws_bedrockagentcore.CfnPaymentCredentialProviderMixinProps(*, credential_provider_vendor=None, name=None, provider_configuration_input=None, tags=None)

Bases: object

Properties for CfnPaymentCredentialProviderPropsMixin.

Parameters:
  • credential_provider_vendor (Optional[str]) – Supported vendor types for payment providers.

  • name (Optional[str]) – Unique name for the payment credential provider.

  • provider_configuration_input (Union[IResolvable, PaymentProviderConfigurationInputProperty, Dict[str, Any], None]) – Provider configuration input containing secrets for creation/update.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – Tags for the payment credential provider.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-paymentcredentialprovider.html

ExampleMetadata:

fixture=_generated

Example:

from aws_cdk import CfnTag
# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.cfn_property_mixins import aws_bedrockagentcore as bedrockagentcore

cfn_payment_credential_provider_mixin_props = bedrockagentcore.CfnPaymentCredentialProviderMixinProps(
    credential_provider_vendor="credentialProviderVendor",
    name="name",
    provider_configuration_input=bedrockagentcore.CfnPaymentCredentialProviderPropsMixin.PaymentProviderConfigurationInputProperty(
        coinbase_cdp_configuration=bedrockagentcore.CfnPaymentCredentialProviderPropsMixin.CoinbaseCdpConfigurationInputProperty(
            api_key_id="apiKeyId",
            api_key_secret="apiKeySecret",
            wallet_secret="walletSecret"
        ),
        stripe_privy_configuration=bedrockagentcore.CfnPaymentCredentialProviderPropsMixin.StripePrivyConfigurationInputProperty(
            app_id="appId",
            app_secret="appSecret",
            authorization_id="authorizationId",
            authorization_private_key="authorizationPrivateKey"
        )
    ),
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

credential_provider_vendor

Supported vendor types for payment providers.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-paymentcredentialprovider.html#cfn-bedrockagentcore-paymentcredentialprovider-credentialprovidervendor

name

Unique name for the payment credential provider.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-paymentcredentialprovider.html#cfn-bedrockagentcore-paymentcredentialprovider-name

provider_configuration_input

Provider configuration input containing secrets for creation/update.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-paymentcredentialprovider.html#cfn-bedrockagentcore-paymentcredentialprovider-providerconfigurationinput

tags

Tags for the payment credential provider.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-paymentcredentialprovider.html#cfn-bedrockagentcore-paymentcredentialprovider-tags