interface StripePrivyConfigurationOutputProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnPaymentCredentialProvider.StripePrivyConfigurationOutputProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnPaymentCredentialProvider_StripePrivyConfigurationOutputProperty |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnPaymentCredentialProvider.StripePrivyConfigurationOutputProperty |
Python | aws_cdk.aws_bedrockagentcore.CfnPaymentCredentialProvider.StripePrivyConfigurationOutputProperty |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnPaymentCredentialProvider » StripePrivyConfigurationOutputProperty |
Stripe Privy configuration output with secret ARNs.
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 stripePrivyConfigurationOutputProperty: bedrockagentcore.CfnPaymentCredentialProvider.StripePrivyConfigurationOutputProperty = {
appId: 'appId',
appSecretArn: {
secretArn: 'secretArn',
},
authorizationId: 'authorizationId',
authorizationPrivateKeyArn: {
secretArn: 'secretArn',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| app | string | The app ID provided by Privy. |
| app | IResolvable | Secret | Contains information about a secret in AWS Secrets Manager. |
| authorization | string | The authorization ID for the Stripe Privy integration. |
| authorization | IResolvable | Secret | Contains information about a secret in AWS Secrets Manager. |
appId
Type:
string
The app ID provided by Privy.
appSecretArn
Type:
IResolvable | Secret
Contains information about a secret in AWS Secrets Manager.
authorizationId
Type:
string
The authorization ID for the Stripe Privy integration.
authorizationPrivateKeyArn
Type:
IResolvable | Secret
Contains information about a secret in AWS Secrets Manager.

.NET
Go
Java
Python
TypeScript