Class UserPoolAuthenticationProvider

java.lang.Object
software.amazon.jsii.JsiiObject
software.amazon.awscdk.services.cognito.identitypool.alpha.UserPoolAuthenticationProvider
All Implemented Interfaces:
IUserPoolAuthenticationProvider, software.amazon.jsii.JsiiSerializable

@Generated(value="jsii-pacmak/1.98.0 (build 00b106d)", date="2024-05-08T21:35:15.359Z") @Stability(Experimental) public class UserPoolAuthenticationProvider extends software.amazon.jsii.JsiiObject implements IUserPoolAuthenticationProvider
(experimental) Defines a User Pool Authentication Provider.

Example:

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

    • UserPoolAuthenticationProvider

      protected UserPoolAuthenticationProvider(software.amazon.jsii.JsiiObjectRef objRef)
    • UserPoolAuthenticationProvider

      protected UserPoolAuthenticationProvider(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • UserPoolAuthenticationProvider

      @Stability(Experimental) public UserPoolAuthenticationProvider(@NotNull UserPoolAuthenticationProviderProps props)
      Parameters:
      props - This parameter is required.
  • Method Details