Interface CfnPaymentCredentialProvider.StripePrivyConfigurationOutputProperty

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

@Stability(Stable) public static interface CfnPaymentCredentialProvider.StripePrivyConfigurationOutputProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.bedrockagentcore.*;
 StripePrivyConfigurationOutputProperty stripePrivyConfigurationOutputProperty = StripePrivyConfigurationOutputProperty.builder()
         .appId("appId")
         .appSecretArn(SecretInfoProperty.builder()
                 .secretArn("secretArn")
                 .build())
         .authorizationId("authorizationId")
         .authorizationPrivateKeyArn(SecretInfoProperty.builder()
                 .secretArn("secretArn")
                 .build())
         .build();
 

See Also: