Is it possible to search on nested properties from AWS DynamoDB console? I am able to search on all top level properties, but search on any nested properties always results in empty result set.
For example for the document provided below I am able to scan and add filter on any top level field, like id, name, etc.
However I am unable to scan, and filter on device. I am trying the filter as device.name = 'Xaomi'
{ id: 'jhfdgu75457y8r', name: 'Parag', device: {name: 'Xaomi', country: 'China'} }
Please note that I am doing this from AWS console, and not any client library. Does AWS console allows filters on nested objects?