interface StripePrivyConfigurationOutputProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.BedrockAgentCore.CfnPaymentCredentialProviderPropsMixin.StripePrivyConfigurationOutputProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrockagentcore#CfnPaymentCredentialProviderPropsMixin_StripePrivyConfigurationOutputProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrockagentcore.CfnPaymentCredentialProviderPropsMixin.StripePrivyConfigurationOutputProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrockagentcore.CfnPaymentCredentialProviderPropsMixin.StripePrivyConfigurationOutputProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrockagentcore » CfnPaymentCredentialProviderPropsMixin » 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/cfn-property-mixins';
const stripePrivyConfigurationOutputProperty: bedrockagentcore.CfnPaymentCredentialProviderPropsMixin.StripePrivyConfigurationOutputProperty = {
appId: 'appId',
appSecretArn: {
secretArn: 'secretArn',
},
appSecretJsonKey: 'appSecretJsonKey',
appSecretSource: 'appSecretSource',
authorizationId: 'authorizationId',
authorizationPrivateKeyArn: {
secretArn: 'secretArn',
},
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. |
| app | string | The JSON key within the secret that contains the app secret value. |
| app | string | The source of the secret. |
| authorization | string | The authorization ID for the Stripe Privy integration. |
| authorization | IResolvable | Secret | Contains information about a secret in AWS Secrets Manager. |
| 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
(optional)
The app ID provided by Privy.
appSecretArn?
Type:
IResolvable | Secret
(optional)
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.
authorizationId?
Type:
string
(optional)
The authorization ID for the Stripe Privy integration.
authorizationPrivateKeyArn?
Type:
IResolvable | Secret
(optional)
Contains information about a secret in AWS Secrets Manager.
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