AWS Security ChangesHomeSearch

AWS apigateway documentation change

Service: apigateway · 2025-08-13 · Documentation low

File: apigateway/latest/developerguide/apigateway-private-api-create.md

Summary

Fixed JSON syntax in IAM policy example and updated placeholder account IDs/resources

Security assessment

Changes involve syntax corrections and example standardization without altering security semantics. No evidence of addressing vulnerabilities or adding security features.

Diff

diff --git a/apigateway/latest/developerguide/apigateway-private-api-create.md b/apigateway/latest/developerguide/apigateway-private-api-create.md
index ff4ea2672..1c973388c 100644
--- a//apigateway/latest/developerguide/apigateway-private-api-create.md
+++ b//apigateway/latest/developerguide/apigateway-private-api-create.md
@@ -494 +494 @@ JSON
-                ""Principal": {
+                "Principal": {
@@ -496,2 +496,2 @@ JSON
-                        "arn:aws:iam::account-id:role/developer",
-                        "arn:aws:iam::account-id:role/Admin"
+                        "arn:aws:iam::111122223333:role/developer",
+                        "arn:aws:iam::111122223333:role/Admin"
@@ -502 +502,3 @@ JSON
-                    "execute-api:/*"
+                    "execute-api:/stage/GET/pets"
+                ]
+            }
@@ -504,2 +505,0 @@ JSON
-            },
-            ...