I have a lambda function in AWS that is calling an API that has a rate limit of 120 calls per second. It's a paginated listing API, so it'll loop and keep hitting this API until there's no more pages left to get. How do I limit the calls so that my lambda will only hit this API 120 times a second?