In Eclipse, i created a new Amazon lambda function to a dynamodb event. I didn't implement anything, the code is as the Amazon wizard creates the project.
When i run the test as junit, it returns:
com.fasterxml.jackson.databind.JsonMappingException: Conflicting setter definitions for property "eventName": com.amazonaws.services.dynamodbv2.model.Record#setEventName(1 params) vs com.amazonaws.services.dynamodbv2.model.Record#setEventName(1 params)
I try to solve this with @JsonIgnore, but i get the same result.
Any suggestion?