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',
},
// the properties below are optional
appSecretJsonKey: 'appSecretJsonKey',
appSecretSource: 'appSecretSource',
authorizationPrivateKeyJsonKey: 'authorizationPrivateKeyJsonKey',
authorizationPrivateKeySource: 'authorizationPrivateKeySource',
};
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. |
| app | string | The JSON key within the secret that contains the app secret value. |
| app | string | The source of the secret. |
| authorization | string | The JSON key within the secret that contains the authorization private key value. |
| authorization | string | The source of the secret. |
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.
appSecretJsonKey?
Type:
string
(optional)
The JSON key within the secret that contains the app secret value.
appSecretSource?
Type:
string
(optional)
The source of the secret.
Use MANAGED for service-managed secrets or EXTERNAL for customer-provided secrets.
authorizationPrivateKeyJsonKey?
Type:
string
(optional)
The JSON key within the secret that contains the authorization private key value.
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