AWS Security ChangesHomeSearch

AWS connect documentation change

Service: connect · 2025-08-28 · Documentation medium

File: connect/latest/adminguide/restrict-access-examples.md

Summary

Removed an example IAM policy demonstrating permissions for Connect storage configuration and S3 access

Security assessment

While the removed content relates to access control, there's no indication this was due to a security issue. This appears to be documentation cleanup rather than addressing a vulnerability. However, removing access policy examples could potentially impact security configurations if users relied on them.

Diff

diff --git a/connect/latest/adminguide/restrict-access-examples.md b/connect/latest/adminguide/restrict-access-examples.md
index f8b743e6a..d8c10b520 100644
--- a//connect/latest/adminguide/restrict-access-examples.md
+++ b//connect/latest/adminguide/restrict-access-examples.md
@@ -23,47 +22,0 @@ For more information about what resources, condition keys, and dependent APIs yo
-JSON
-    
-
-****
-    
-    
-    
-    {
-        "Version": "2012-10-17",
-        "Statement": [
-            {
-                "Sid": "VisualEditor0",
-                "Effect": "Allow",
-                "Action": [
-                    "connect:UpdateInstanceStorageConfig",
-                    "connect:AssociateInstanceStorageConfig"
-                ],
-                "Resource": "arn:aws:connect:us-east-1:account-id:instance/instance-id",
-                "Condition": {
-                    "StringEquals": {
-                        "connect:StorageResourceType": "CALL_RECORDINGS"
-                    }
-                }
-            },
-            {
-                "Sid": "VisualEditor1",
-                "Effect": "Allow",
-                "Action": [
-                    "iam:PutRolePolicy",
-                    "s3:GetBucketAcl",
-                    "s3:GetBucketLocation"
-                ],
-                "Resource": [
-                    "arn:aws:iam::111122223333:role/aws-service-role/connect.amazonaws.com/*",
-                    "arn:aws:s3:::amzn-s3-demo-bucket"
-                ]
-            },
-            {
-                "Sid": "VisualEditor2",
-                "Effect": "Allow",
-                "Action": "s3:ListAllMyBuckets",
-                "Resource": "*"
-            }
-        ]
-    }
-    
-