If I add a custom authorizer function to verify JWT token to my Lambda API, will it count/billed as two API requests?
custom authorizer function is just another lambda function which is called before the actual api to evaluate the request header for the user credentials.
So will the custom authorizer function be deemed as an additional api request every time I invoke my lambda function?