If I write a new key/value to dynamodb, will the result differ in case of reading it in "Strong consistency" mode or "Eventual consistency" mode?
I mean it is a new key/value which is never going to get updated.
It is possible for an eventually consistent read to still return null in this case. The documentation does say 1 sec propagation delay in general, but it is not a guarantee. If your application critically depends on reading the latest version of the item, then you will want to use strongly consistent reads.