AWS Security ChangesHomeSearch

AWS polly documentation change

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

File: polly/latest/dg/security_iam_id-based-policy-examples.md

Summary

Removed JSON examples of IAM policies including console access and lexicon management rules

Security assessment

The changes remove policy examples but do not address specific security vulnerabilities or add new security guidance.

Diff

diff --git a/polly/latest/dg/security_iam_id-based-policy-examples.md b/polly/latest/dg/security_iam_id-based-policy-examples.md
index 2307910c7..f44943e79 100644
--- a//polly/latest/dg/security_iam_id-based-policy-examples.md
+++ b//polly/latest/dg/security_iam_id-based-policy-examples.md
@@ -59,20 +58,0 @@ To use the Amazon Polly console, grant permissions to all the Amazon Polly APIs.
-JSON
-    
-
-****
-    
-    
-    
-    {
-      "Version": "2012-10-17",
-         "Statement": [{
-            "Sid": "Console-AllowAllPollyActions",
-            "Effect": "Allow",
-            "Action": [
-               "polly:*"],
-            "Resource": "*"
-          }
-       ]
-    }
-    
-
@@ -189,34 +168,0 @@ The following permissions policy grants the user permissions to perform all acti
-JSON
-    
-
-****
-    
-    
-    
-    {
-        "Version": "2012-10-17",
-        "Statement": [
-            {
-                "Sid": "AllowAllActions-DenyDelete",
-                "Effect": "Allow",
-                "Action": [
-                    "polly:DescribeVoices",
-                    "polly:GetLexicon",
-                    "polly:PutLexicon",
-                    "polly:SynthesizeSpeech",
-                    "polly:ListLexicons"
-                ],
-                "Resource": "*"
-            },
-            {
-                "Sid": "DenyDeleteLexicon",
-                "Effect": "Deny",
-                "Action": [
-                    "polly:DeleteLexicon"
-                ],
-                "Resource": "*"
-            }
-        ]
-    }
-    
-