I am trying to filter a DynamoDB request with the contents of the Map contained in the list. Here is an example of the structure I'm dealing with.
{ 'EventType': 'git/push' 'EventTime': 1416251010, 'Commits': [ { 'id': '29d02aff...', 'subject': 'Add the thing to the place' }, { 'id': '9d888fec...', 'subject': 'Spelling errors' }, ... ] }
The EventType hash key and the EventTime range EventTime . I am trying to write a filter that filters the result of a request to a specific id . Is it possible to create a DynamoDB filter expression that correctly filters the query as follows? (My first thought was to use contains (a, a) , but I donβt think this would work in a list of maps.)
source share