interface StripePrivyConfigurationInputProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.BedrockAgentCore.CfnPaymentCredentialProviderPropsMixin.StripePrivyConfigurationInputProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrockagentcore#CfnPaymentCredentialProviderPropsMixin_StripePrivyConfigurationInputProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrockagentcore.CfnPaymentCredentialProviderPropsMixin.StripePrivyConfigurationInputProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrockagentcore.CfnPaymentCredentialProviderPropsMixin.StripePrivyConfigurationInputProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrockagentcore » CfnPaymentCredentialProviderPropsMixin » StripePrivyConfigurationInputProperty |
Stripe Privy configuration with credentials.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_bedrockagentcore as bedrockagentcore } from '@aws-cdk/cfn-property-mixins';
const stripePrivyConfigurationInputProperty: bedrockagentcore.CfnPaymentCredentialProviderPropsMixin.StripePrivyConfigurationInputProperty = {
appId: 'appId',
appSecret: 'appSecret',
appSecretConfig: {
jsonKey: 'jsonKey',
secretId: 'secretId',
},
appSecretSource: 'appSecretSource',
authorizationId: 'authorizationId',
authorizationPrivateKey: 'authorizationPrivateKey',
authorizationPrivateKeyConfig: {
jsonKey: 'jsonKey',
secretId: 'secretId',
},
authorizationPrivateKeySource: 'authorizationPrivateKeySource',
};
Properties
| Name | Type | Description |
|---|---|---|
| app | string | The app ID provided by Privy. |
| app | string | The app secret provided by Privy. |
| app | IResolvable | Secret | A reference to a customer-provided secret stored in AWS Secrets Manager. |
| app | string | The source of the secret. |
| authorization | string | The authorization ID for the Stripe Privy integration. |
| authorization | string | The authorization private key for the Stripe Privy integration. |
| authorization | IResolvable | Secret | A reference to a customer-provided secret stored in AWS Secrets Manager. |
| authorization | string | The source of the secret. |
appId?
Type:
string
(optional)
The app ID provided by Privy.
appSecret?
Type:
string
(optional)
The app secret provided by Privy.
appSecretConfig?
Type:
IResolvable | Secret
(optional)
A reference to a customer-provided secret stored in AWS Secrets Manager.
appSecretSource?
Type:
string
(optional)
The source of the secret.
Use MANAGED for service-managed secrets or EXTERNAL for customer-provided secrets.
authorizationId?
Type:
string
(optional)
The authorization ID for the Stripe Privy integration.
authorizationPrivateKey?
Type:
string
(optional)
The authorization private key for the Stripe Privy integration.
authorizationPrivateKeyConfig?
Type:
IResolvable | Secret
(optional)
A reference to a customer-provided secret stored in AWS Secrets Manager.
authorizationPrivateKeySource?
Type:
string
(optional)
The source of the secret.
Use MANAGED for service-managed secrets or EXTERNAL for customer-provided secrets.

.NET
Go
Java
Python
TypeScript