Interface CfnPaymentCredentialProvider.StripePrivyConfigurationInputProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnPaymentCredentialProvider.StripePrivyConfigurationInputProperty.Jsii$Proxy
Enclosing class:
CfnPaymentCredentialProvider

@Stability(Stable) public static interface CfnPaymentCredentialProvider.StripePrivyConfigurationInputProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.bedrockagentcore.*;
 StripePrivyConfigurationInputProperty stripePrivyConfigurationInputProperty = StripePrivyConfigurationInputProperty.builder()
         .appId("appId")
         .authorizationId("authorizationId")
         // the properties below are optional
         .appSecret("appSecret")
         .appSecretConfig(SecretReferenceProperty.builder()
                 .jsonKey("jsonKey")
                 .secretId("secretId")
                 .build())
         .appSecretSource("appSecretSource")
         .authorizationPrivateKey("authorizationPrivateKey")
         .authorizationPrivateKeyConfig(SecretReferenceProperty.builder()
                 .jsonKey("jsonKey")
                 .secretId("secretId")
                 .build())
         .authorizationPrivateKeySource("authorizationPrivateKeySource")
         .build();
 

See Also: