AWS Security ChangesHomeSearch

AWS amazondynamodb documentation change

Service: amazondynamodb · 2026-07-04 · Documentation low

File: amazondynamodb/latest/developerguide/HowItWorks.ReadConsistency.md

Summary

Added documentation about two global table consistency modes: multi-Region eventual consistency (MREC) and multi-Region strong consistency (MRSC)

Security assessment

The change describes functional consistency models without addressing security vulnerabilities or weaknesses. No security implications are mentioned in the diff

Diff

diff --git a/amazondynamodb/latest/developerguide/HowItWorks.ReadConsistency.md b/amazondynamodb/latest/developerguide/HowItWorks.ReadConsistency.md
index 78df328ff..9701f7ff5 100644
--- a//amazondynamodb/latest/developerguide/HowItWorks.ReadConsistency.md
+++ b//amazondynamodb/latest/developerguide/HowItWorks.ReadConsistency.md
@@ -27 +27,3 @@ Read operations such as `GetItem`, `Query`, and `Scan` provide an optional `Cons
-DynamoDB also supports [global tables](./GlobalTables.html) for multi-active and multi-Region replication. A global table is composed of multiple replica tables in different AWS Regions. Any change made to any item in any replica table is replicated to all the other replicas within the same global table, typically within a second, and are eventually consistent. For more information, see [Consistency modes](./V2globaltables_HowItWorks.html#V2globaltables_HowItWorks.consistency-modes).
+DynamoDB also supports [global tables](./GlobalTables.html) for multi-active and multi-Region replication. A global table is composed of multiple replica tables in different AWS Regions. Any change made to any item in any replica table is replicated to all the other replicas within the same global table.
+
+Global tables support two consistency modes. With multi-Region eventual consistency (MREC), the default mode, item changes are replicated to the other replicas typically within a second and are eventually consistent across Regions. With multi-Region strong consistency (MRSC), item changes are synchronously replicated to another Region before the write returns, and strongly consistent read operations on any replica always return the latest version of an item. For more information, see [Consistency modes](./V2globaltables_HowItWorks.html#V2globaltables_HowItWorks.consistency-modes).