public Task ResetPasswordAsync()

in src/Amazon.AspNetCore.Identity.Cognito/CognitoUserManager.cs [316:325]


        public Task<IdentityResult> ResetPasswordAsync(TUser user)
        {
            ThrowIfDisposed();
            if (user == null)
            {
                throw new ArgumentNullException(nameof(user));
            }

            return _userStore.ResetPasswordAsync(user, CancellationToken);
        }