CfnPaymentConnectorProps
- class aws_cdk.aws_bedrockagentcore.CfnPaymentConnectorProps(*, connector_name, connector_type, credential_provider_configurations, payment_manager_id, description=None)
Bases:
objectProperties for defining a
CfnPaymentConnector.- Parameters:
connector_name (
str) – The name of the payment connector.connector_type (
str)credential_provider_configurations (
Union[IResolvable,Sequence[Union[IResolvable,CredentialsProviderConfigurationProperty,Dict[str,Any]]]]) – The credential provider configurations for the connector.payment_manager_id (
str) – The identifier of the parent payment manager.description (
Optional[str]) – A description of the payment connector.
- 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 import aws_bedrockagentcore as bedrockagentcore cfn_payment_connector_props = bedrockagentcore.CfnPaymentConnectorProps( connector_name="connectorName", connector_type="connectorType", credential_provider_configurations=[bedrockagentcore.CfnPaymentConnector.CredentialsProviderConfigurationProperty( coinbase_cdp=bedrockagentcore.CfnPaymentConnector.PaymentCredentialProviderConfigurationProperty( credential_provider_arn="credentialProviderArn" ), stripe_privy=bedrockagentcore.CfnPaymentConnector.PaymentCredentialProviderConfigurationProperty( credential_provider_arn="credentialProviderArn" ) )], payment_manager_id="paymentManagerId", # the properties below are optional description="description" )
Attributes
- connector_name
The name of the payment connector.
- connector_type
-
- Type:
see
- credential_provider_configurations
The credential provider configurations for the connector.
- description
A description of the payment connector.
- payment_manager_id
The identifier of the parent payment manager.