I have the AWS Lambda function that is triggered by Dynamo Stream (changes that appear in DynamoDB). It worked perfectly. Somehow I started receiving errors in Lambda logs with no lambda code lines specified in stack trace:
java.lang.NullPointerException: java.lang.NullPointerException
java.lang.NullPointerException
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)`
As I said, Lambda is triggered by Dynamo Stream events and inside it performs a simple HTTP post request call. What could it be?