interface StripePrivyConfigurationInputProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnPaymentCredentialProvider.StripePrivyConfigurationInputProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnPaymentCredentialProvider_StripePrivyConfigurationInputProperty |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnPaymentCredentialProvider.StripePrivyConfigurationInputProperty |
Python | aws_cdk.aws_bedrockagentcore.CfnPaymentCredentialProvider.StripePrivyConfigurationInputProperty |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnPaymentCredentialProvider » 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-lib';
const stripePrivyConfigurationInputProperty: bedrockagentcore.CfnPaymentCredentialProvider.StripePrivyConfigurationInputProperty = {
appId: 'appId',
authorizationId: 'authorizationId',
// the properties below are optional
appSecret: 'appSecret',
appSecretConfig: {
jsonKey: 'jsonKey',
secretId: 'secretId',
},
appSecretSource: 'appSecretSource',
authorizationPrivateKey: 'authorizationPrivateKey',
authorizationPrivateKeyConfig: {
jsonKey: 'jsonKey',
secretId: 'secretId',
},
authorizationPrivateKeySource: 'authorizationPrivateKeySource',
};
Properties
| Name | Type | Description |
|---|---|---|
| app | string | The app ID provided by Privy. |
| authorization | string | The authorization ID for the Stripe Privy integration. |
| 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 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
The app ID provided by Privy.
authorizationId
Type:
string
The authorization ID for the Stripe Privy integration.
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.
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