AWS Security ChangesHomeSearch

AWS connect documentation change

Service: connect · 2025-08-16 · Documentation low

File: connect/latest/adminguide/setup-prompts-s3.md

Summary

Removed example S3 bucket policy configuration

Security assessment

Policy example removal doesn't directly address security vulnerabilities. However, users following documentation might need to find policy examples elsewhere, potentially impacting security configuration quality if not addressed properly.

Diff

diff --git a/connect/latest/adminguide/setup-prompts-s3.md b/connect/latest/adminguide/setup-prompts-s3.md
index 749a6d767..e7452a6e9 100644
--- a//connect/latest/adminguide/setup-prompts-s3.md
+++ b//connect/latest/adminguide/setup-prompts-s3.md
@@ -36,34 +35,0 @@ To allow Amazon Connect to play prompts from an S3 bucket, when you set up your
-JSON
-    
-
-****
-    
-    
-        {
-        "Version": "2012-10-17",
-        "Statement": [
-            {
-                "Sid": "statement1",
-                "Effect": "Allow",
-                "Principal": {
-                    "Service": "connect.amazonaws.com"
-                },
-                "Action": [
-                    "s3:ListBucket",
-                    "s3:GetObject"
-                ],
-                "Resource": [
-                    "arn:aws:s3:::amzn-s3-demo-bucket1",
-                    "arn:aws:s3:::amzn-s3-demo-bucket1/*"
-                ],
-                "Condition": {
-                    "StringEquals": {
-                        "aws:SourceAccount": "account-id",
-                        "aws:SourceArn": "arn:aws:connect:region:account-id:instance/instance-id"
-                    }
-                }
-            }
-        ]
-    } 
-    
-