AWS Security ChangesHomeSearch

AWS polly documentation change

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

File: polly/latest/dg/asynchronous-iam.md

Summary

Removed JSON example of IAM policy for asynchronous speech synthesis tasks

Security assessment

The removed policy example showed required permissions but does not indicate any security issue being fixed.

Diff

diff --git a/polly/latest/dg/asynchronous-iam.md b/polly/latest/dg/asynchronous-iam.md
index a6338bcd6..2ef341935 100644
--- a//polly/latest/dg/asynchronous-iam.md
+++ b//polly/latest/dg/asynchronous-iam.md
@@ -20,33 +19,0 @@ The following policy grants only the necessary permissions required for asynchro
-JSON
-    
-
-****
-    
-    
-    
-    {
-        "Version": "2012-10-17",
-        "Statement": [
-            {
-                "Effect": "Allow",
-                "Action": [
-                    "polly:StartSpeechSynthesisTask",
-                    "polly:GetSpeechSynthesisTask",
-                    "polly:ListSpeechSynthesisTasks"
-                ],
-                "Resource": "*"
-            },
-            {
-                "Effect": "Allow",
-                "Action": "s3:PutObject",
-                "Resource": "arn:aws:s3:::bucket-name/*"
-            },
-            {
-                "Effect": "Allow",
-                "Action": "sns:Publish",
-                "Resource": "arn:aws:sns:us-east-1:account:topic"
-            }
-        ]
-    }
-    
-