AWS Security ChangesHomeSearch

AWS lex documentation change

Service: lex · 2025-10-25 · Documentation low

File: lex/latest/dg/gs-cli-update-lambda.md

Summary

Removed JSON example of bot configuration including abort statements, session TTL, and voice settings

Security assessment

The deletion of sample bot configuration does not indicate any security-related changes. The removed content included standard bot properties like idleSessionTTLInSeconds but no security-specific features or vulnerability mitigations.

Diff

diff --git a/lex/latest/dg/gs-cli-update-lambda.md b/lex/latest/dg/gs-cli-update-lambda.md
index 2a8b042fe..7385fffe1 100644
--- a//lex/latest/dg/gs-cli-update-lambda.md
+++ b//lex/latest/dg/gs-cli-update-lambda.md
@@ -141,38 +140,0 @@ The response from the server is:
-        {
-        "status": "READY", 
-        "intents": [
-            {
-                "intentVersion": "$LATEST", 
-                "intentName": "OrderFlowers"
-            }
-        ], 
-        "name": "OrderFlowersBot", 
-        "locale": "en-US", 
-        "checksum": "checksum", 
-        "abortStatement": {
-            "messages": [
-                {
-                    "content": "Sorry, I'm not able to assist at this time", 
-                    "contentType": "PlainText"
-                }
-            ]
-        }, 
-        "version": "$LATEST", 
-        "lastUpdatedDate": timestamp, 
-        "createdDate": timestamp, 
-        "clarificationPrompt": {
-            "maxAttempts": 2, 
-            "messages": [
-                {
-                    "content": "I didn't understand you, what would you like to do?", 
-                    "contentType": "PlainText"
-                }
-            ]
-        }, 
-        "voiceId": "Salli", 
-        "childDirected": false, 
-        "idleSessionTTLInSeconds": 600, 
-        "description": "Bot to order flowers on the behalf of a user"
-    }
-    
-