Interface UserPoolAuthenticationProviderProps

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

@Generated(value="jsii-pacmak/1.112.0 (build de1bc80)", date="2025-06-20T13:49:13.960Z") @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());