AWS Security ChangesHomeSearch

AWS dms documentation change

Service: dms · 2025-04-16 · Documentation low

File: dms/latest/userguide/CHAP_Source.DocumentDB.md

Summary

Corrected MongoDB user creation syntax and formatting

Security assessment

Syntax correction in example code without security implications

Diff

diff --git a/dms/latest/userguide/CHAP_Source.DocumentDB.md b/dms/latest/userguide/CHAP_Source.DocumentDB.md
index 107c04766..531476d0a 100644
--- a//dms/latest/userguide/CHAP_Source.DocumentDB.md
+++ b//dms/latest/userguide/CHAP_Source.DocumentDB.md
@@ -124 +124 @@ For Amazon DocumentDB 3.6, the code following creates a user with minimal privil
-    use database_to_migrate
+    use db_name
@@ -129,3 +129,3 @@ For Amazon DocumentDB 3.6, the code following creates a user with minimal privil
-        roles: [ { role: "read", db: "db_name" }, "read"] 
-    })                        
-                 
+            roles: [{ role: "read", db: "db_name" }]
+        }
+    )