I have of the non-primary key column in DynamoDb which is of List type as this:
logs=[{
m1:{"key1":"pair1",
"key2":"pair2",
"timestamp":2189321.212
},
m2:{"key1":"pair1",
"key2":"pair2",
"timestamp":2112321.212
},
...
}]
So problem statement is I want to get a list of items, which are 30 days old. I am not able to query this one.


