AWS Security ChangesHomeSearch

AWS AmazonS3 documentation change

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

File: AmazonS3/latest/userguide/ways-to-add-notification-config-to-bucket.md

Summary

Removed JSON example of SNS topic policy for bucket notifications

Security assessment

The removal of a policy example does not indicate a security issue. This appears to be documentation simplification without security implications.

Diff

diff --git a/AmazonS3/latest/userguide/ways-to-add-notification-config-to-bucket.md b/AmazonS3/latest/userguide/ways-to-add-notification-config-to-bucket.md
index 7af31f6b2..b292caa66 100644
--- a//AmazonS3/latest/userguide/ways-to-add-notification-config-to-bucket.md
+++ b//AmazonS3/latest/userguide/ways-to-add-notification-config-to-bucket.md
@@ -170,33 +169,0 @@ You get an email requesting you to confirm your subscription to the topic. Confi
-JSON
-    
-
-****
-    
-    
-        {
-        "Version": "2012-10-17",
-        "Id": "example-ID",
-        "Statement": [
-            {
-                "Sid": "Example SNS topic policy",
-                "Effect": "Allow",
-                "Principal": {
-                    "Service": "s3.amazonaws.com"
-                },
-                "Action": [
-                    "SNS:Publish"
-                ],
-                "Resource": "arn:aws:sns:aws-region:111122223333:topic-name",
-                "Condition": {
-                    "ArnLike": {
-                        "aws:SourceArn": "arn:aws:s3:*:*:amzn-s3-demo-bucket"
-                    },
-                    "StringEquals": {
-                        "aws:SourceAccount": "bucket-owner-account-id"
-                    }
-                }
-            }
-        ]
-    }                  
-    
-