It is possible, but very difficult!
Meteor works by having "minimongo" on the browser client and "correct mongo" on the server. This allows it to track changes on the client side and on the server side.
There are also some really useful bits where the server pays attention to changes in serverdb in real time using Mongodb Oplog, a function a bit like SQL triggers.
Thus, you will have a lot of effort to find how to set up a meteorite to take DynamoDB, which will then lead to a version of Meteor that does not have the same functionality (live hits from the server).
It will not be fun!
source share