AWS Security ChangesHomeSearch

AWS lexv2 documentation change

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

File: lexv2/latest/dg/gr-permissions.md

Summary

Removed IAM policy example for Global Resiliency permissions including service-linked role creation and bot replica management

Security assessment

This removes a specific permission policy example but doesn't indicate any security vulnerability being addressed. The change appears to be documentation reorganization rather than security-related modification.

Diff

diff --git a/lexv2/latest/dg/gr-permissions.md b/lexv2/latest/dg/gr-permissions.md
index 8e6b4920b..a5601c298 100644
--- a//lexv2/latest/dg/gr-permissions.md
+++ b//lexv2/latest/dg/gr-permissions.md
@@ -20,55 +19,0 @@ If you prefer to create a role with minimal permissions for Global Resiliency, u
-JSON
-    
-
-****
-    
-    
-    
-    {
-        "Version": "2012-10-17",
-        "Statement": [
-            {
-                "Sid": "GetReplicationSLR",
-                "Effect": "Allow",
-                "Action": [
-                    "iam:GetRole"
-                ],
-                "Resource": [
-                    "arn:aws:iam::*:role/aws-service-role/replication.lexv2.amazonaws.com/AWSServiceRoleForLexV2Replication*"
-                ]
-            },
-            {
-                "Sid": "CreateReplicationSLR",
-                "Effect": "Allow",
-                "Action": [
-                    "iam:CreateServiceLinkedRole"
-                ],
-                "Resource": [
-                    "arn:aws:iam::*:role/aws-service-role/replication.lexv2.amazonaws.com/AWSServiceRoleForLexV2Replication*"
-                ],
-                "Condition": {
-                    "StringEquals": {
-                        "iam:AWSServiceName": "lexv2.amazonaws.com"
-                    }
-                }
-            },
-            {
-                "Sid": "AllowBotReplicaActions",
-                "Effect": "Allow",
-                "Action": [
-                    "lex:CreateBotReplica",
-                    "lex:DescribeBotReplica",
-                    "lex:ListBotReplica",
-                    "lex:ListBotVersionReplicas",
-                    "lex:ListBotAliasReplicas",
-                    "lex:DeleteBotReplica"
-                ],
-                "Resource": [
-                    "arn:aws:lex:*:*:bot/*",
-                    "arn:aws:lex:*:*:bot-alias/*"
-                ]
-            }
-        ]
-    }
-    
-