Interface CfnPaymentCredentialProviderPropsMixin.StripePrivyConfigurationInputProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPaymentCredentialProviderPropsMixin.StripePrivyConfigurationInputProperty.Jsii$Proxy
- Enclosing class:
CfnPaymentCredentialProviderPropsMixin
@Stability(Stable)
public static interface CfnPaymentCredentialProviderPropsMixin.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.cfnpropertymixins.services.bedrockagentcore.*;
StripePrivyConfigurationInputProperty stripePrivyConfigurationInputProperty = StripePrivyConfigurationInputProperty.builder()
.appId("appId")
.appSecret("appSecret")
.authorizationId("authorizationId")
.authorizationPrivateKey("authorizationPrivateKey")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnPaymentCredentialProviderPropsMixin.StripePrivyConfigurationInputProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringgetAppId()The app ID provided by Privy.default StringThe app secret provided by Privy.default StringThe authorization ID for the Stripe Privy integration.default StringThe authorization private key for the Stripe Privy integration.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAppId
The app ID provided by Privy.- See Also:
-
getAppSecret
The app secret provided by Privy.- See Also:
-
getAuthorizationId
The authorization ID for the Stripe Privy integration.- See Also:
-
getAuthorizationPrivateKey
The authorization private key for the Stripe Privy integration.- See Also:
-
builder
@Stability(Stable) static CfnPaymentCredentialProviderPropsMixin.StripePrivyConfigurationInputProperty.Builder builder()
-