AWS Security ChangesHomeSearch

AWS solutions documentation change

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

File: solutions/latest/clickstream-analytics-on-aws/ingestion-endpoint.md

Summary

Removed JSON bucket policy example granting S3 PutObject access to an ELB account

Security assessment

The change deletes an example resource policy but does not indicate a security fix. The policy demonstrated proper access controls but removal is a documentation cleanup.

Diff

diff --git a/solutions/latest/clickstream-analytics-on-aws/ingestion-endpoint.md b/solutions/latest/clickstream-analytics-on-aws/ingestion-endpoint.md
index dc27fa817..dfb955a7b 100644
--- a//solutions/latest/clickstream-analytics-on-aws/ingestion-endpoint.md
+++ b//solutions/latest/clickstream-analytics-on-aws/ingestion-endpoint.md
@@ -104,21 +103,0 @@ Below is an example policy for the bucket in Regions available before August 202
-JSON
-    
-
-****
-    
-        
-                {
-            "Version": "2012-10-17",
-            "Statement": [
-                {
-                    "Effect": "Allow",
-                    "Principal": {
-                        "AWS": "arn:aws:iam::<elb-account-id>:root"
-                    },
-                    "Action": "s3:PutObject",
-                    "Resource": "arn:aws:s3:::<BUCKET>/clickstream/*"
-                }
-            ]
-        }
-        
-