CfnPaymentConnectorPropsMixin
- class aws_cdk.cfn_property_mixins.aws_bedrockagentcore.CfnPaymentConnectorPropsMixin(props, *, strategy=None)
Bases:
MixinResource Type definition for AWS::BedrockAgentCore::PaymentConnector.
- See:
- 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:
props (
Union[CfnPaymentConnectorMixinProps,Dict[str,Any]]) – L1 properties to apply.strategy (
Optional[IMergeStrategy]) – Strategy for merging nested properties. Default: - PropertyMergeStrategy.combine()
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
xis a Mixin.- Parameters:
x (
Any) – Any object.- Return type:
bool- Returns:
true if
xis an object created from a class which extendsMixin.
CredentialsProviderConfigurationProperty
- class CfnPaymentConnectorPropsMixin.CredentialsProviderConfigurationProperty(*, coinbase_cdp=None, stripe_privy=None)
Bases:
object- Parameters:
coinbase_cdp (
Union[IResolvable,PaymentCredentialProviderConfigurationProperty,Dict[str,Any],None])stripe_privy (
Union[IResolvable,PaymentCredentialProviderConfigurationProperty,Dict[str,Any],None])
- See:
- 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
-
- 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:
- 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.