Interface UserPoolAuthenticationProviderProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
UserPoolAuthenticationProviderProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.125.0 (build fdbe357)", date="2026-01-19T12:03:51.603Z") @Stability(Stable) public interface UserPoolAuthenticationProviderProps extends software.amazon.jsii.JsiiSerializable
Props for the User Pool Authentication Provider.

Example:

 IdentityPool identityPool;
 UserPool userPool = new UserPool(this, "Pool");
 identityPool.addUserPoolAuthentication(UserPoolAuthenticationProvider.Builder.create()
         .userPool(userPool)
         .disableServerSideTokenCheck(true)
         .build());