I have data in dynamoDB table and am trying to filter it based on data attributes. Below is an example of the JSON data. An example for filter query would be: payload.stat > 200.
However, attempts to use such query in DynamoDB navigation pane does not work and I get error: "An item consists of one or more attributes. Each attribute consists of a name, a data type, and a value. When you read or write an item, the only attributes that are required are those that make up the primary key"
How can I filter the data using attributes within payload?
{
"payload": {
"lock": "L1",
"maxtmptr": 50,
"serial": "SX001",
"stat": 255,
"timeover": 0.17,
"tmptr": 30
},
"serial": "SX001",
"timestamp": "1472784542467"
}
Screenshot of DynamoDB Table:
