Interface UserPoolAuthenticationProviderProps

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

@Generated(value="jsii-pacmak/1.133.0 (build 0f43e37)", date="2026-06-04T12:52:09.736Z") @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());