CfnPaymentConnectorPropsMixin

class aws_cdk.cfn_property_mixins.aws_bedrockagentcore.CfnPaymentConnectorPropsMixin(props, *, strategy=None)

Bases: Mixin

Resource Type definition for AWS::BedrockAgentCore::PaymentConnector.

See:

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

CloudformationResource:

AWS::BedrockAgentCore::PaymentConnector

Mixin:

true

ExampleMetadata:

fixture=_generated

Example:

# 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
import aws_cdk as cdk

# merge_strategy: cdk.IMergeStrategy

cfn_payment_connector_props_mixin = bedrockagentcore.CfnPaymentConnectorPropsMixin(bedrockagentcore.CfnPaymentConnectorMixinProps(
    connector_name="connectorName",
    connector_type="connectorType",
    credential_provider_configurations=[bedrockagentcore.CfnPaymentConnectorPropsMixin.CredentialsProviderConfigurationProperty(
        coinbase_cdp=bedrockagentcore.CfnPaymentConnectorPropsMixin.PaymentCredentialProviderConfigurationProperty(
            credential_provider_arn="credentialProviderArn"
        ),
        stripe_privy=bedrockagentcore.CfnPaymentConnectorPropsMixin.PaymentCredentialProviderConfigurationProperty(
            credential_provider_arn="credentialProviderArn"
        )
    )],
    description="description",
    payment_manager_id="paymentManagerId"
),
    strategy=merge_strategy
)

Create a mixin to apply properties to AWS::BedrockAgentCore::PaymentConnector.

Parameters:

Methods

apply_to(construct)

Apply the mixin properties to the construct.

Parameters:

construct (IConstruct)

Return type:

None

supports(construct)

Check if this mixin supports the given construct.

Parameters:

construct (IConstruct)

Return type:

bool

Attributes

CFN_PROPERTY_KEYS = ['connectorName', 'connectorType', 'credentialProviderConfigurations', 'description', 'paymentManagerId']

Static Methods

classmethod is_mixin(x)

Checks if x is a Mixin.

Parameters:

x (Any) – Any object.

Return type:

bool

Returns:

true if x is an object created from a class which extends Mixin.

CredentialsProviderConfigurationProperty

class CfnPaymentConnectorPropsMixin.CredentialsProviderConfigurationProperty(*, coinbase_cdp=None, stripe_privy=None)

Bases: object

Parameters:
See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-paymentconnector-credentialsproviderconfiguration.html

ExampleMetadata:

fixture=_generated

Example:

# 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

credentials_provider_configuration_property = bedrockagentcore.CfnPaymentConnectorPropsMixin.CredentialsProviderConfigurationProperty(
    coinbase_cdp=bedrockagentcore.CfnPaymentConnectorPropsMixin.PaymentCredentialProviderConfigurationProperty(
        credential_provider_arn="credentialProviderArn"
    ),
    stripe_privy=bedrockagentcore.CfnPaymentConnectorPropsMixin.PaymentCredentialProviderConfigurationProperty(
        credential_provider_arn="credentialProviderArn"
    )
)

Attributes

coinbase_cdp

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-paymentconnector-credentialsproviderconfiguration.html#cfn-bedrockagentcore-paymentconnector-credentialsproviderconfiguration-coinbasecdp

Type:

see

stripe_privy

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-paymentconnector-credentialsproviderconfiguration.html#cfn-bedrockagentcore-paymentconnector-credentialsproviderconfiguration-stripeprivy

Type:

see

PaymentCredentialProviderConfigurationProperty

class CfnPaymentConnectorPropsMixin.PaymentCredentialProviderConfigurationProperty(*, credential_provider_arn=None)

Bases: object

Parameters:

credential_provider_arn (Optional[str]) – The ARN of the payment credential provider.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-paymentconnector-paymentcredentialproviderconfiguration.html

ExampleMetadata:

fixture=_generated

Example:

# 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

payment_credential_provider_configuration_property = bedrockagentcore.CfnPaymentConnectorPropsMixin.PaymentCredentialProviderConfigurationProperty(
    credential_provider_arn="credentialProviderArn"
)

Attributes

credential_provider_arn

The ARN of the payment credential provider.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-paymentconnector-paymentcredentialproviderconfiguration.html#cfn-bedrockagentcore-paymentconnector-paymentcredentialproviderconfiguration-credentialproviderarn