I am currently utilizing the AWS JavaScript SDK for DynamoDB, and executing a scan operation to retrieve a list of items from a table. The returned results show that each value is enclosed within an attribute type key:
For instance:
An anticipated result would look like: image: { thumbnail: '' }
However, the actual output I am receiving is: image: { thumbnail: { S: '' } }
Is there a method to configure the SDK to provide plain values instead?