Class UserPoolAuthenticationProvider

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

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:45.478Z") @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