AWS Security ChangesHomeSearch

AWS notifications documentation change

Service: notifications · 2025-08-28 · Documentation low

File: notifications/latest/userguide/security_iam_id-based-policy-examples.md

Summary

Removed JSON IAM policy examples for User Notifications access control

Security assessment

Removal of policy examples reduces documentation about access control but doesn't indicate a security vulnerability fix. Impacts security posture by reducing guidance for proper IAM configuration.

Diff

diff --git a/notifications/latest/userguide/security_iam_id-based-policy-examples.md b/notifications/latest/userguide/security_iam_id-based-policy-examples.md
index eb1973714..5ba704473 100644
--- a//notifications/latest/userguide/security_iam_id-based-policy-examples.md
+++ b//notifications/latest/userguide/security_iam_id-based-policy-examples.md
@@ -91,29 +90,0 @@ You can use conditions in your identity-based policy to control access to User N
-JSON
-    
-
-****
-    
-    
-    
-    {
-        "Version": "2012-10-17",
-        "Statement": [
-            {
-                "Sid": "ListNotificationConfigurationsInConsole",
-                "Effect": "Allow",
-                "Action": ":ListNotificationConfigurations",
-                "Resource": "*"
-            },
-            {
-                "Sid": "ViewNotificationConfigurationIfOwner",
-                "Effect": "Allow",
-                "Action": ":GetNotificationConfiguration",
-                "Resource": "arn:aws::*:*:configuration/*",
-                "Condition": {
-                    "StringEquals": {"aws:ResourceTag/Owner": "${aws:username}"}
-                }
-            }
-        ]
-    }
-    
-