[Solved] Scan of data of a specific column in DynamoDB table – Reserved Keyword [closed]


Sometimes there is a need for everyone to use DynamoDB’s reserved keyword names on their attribute names. In such cases, they can utilize the expression attribute names to map the reserved keyword name with another alternative name.

You can use the expression attribute names in your code as like below:

...
response  = table.scan(
        ExpressionAttributeNames = {'#data': 'data'},
        ProjectionExpression = '#data')
...

solved Scan of data of a specific column in DynamoDB table – Reserved Keyword [closed]