AWS Security ChangesHomeSearch

AWS bedrock-agentcore documentation change

Service: bedrock-agentcore · 2025-08-10 · Documentation low

File: bedrock-agentcore/latest/devguide/code-interpreter-building-agents.md

Summary

Updated terminology from 'sandbox' to 'code interpreter', standardized region placeholders, and revised section headers.

Security assessment

Changes involve terminology updates and example standardization without explicit security context. No evidence of addressing vulnerabilities or security features.

Diff

diff --git a/bedrock-agentcore/latest/devguide/code-interpreter-building-agents.md b/bedrock-agentcore/latest/devguide/code-interpreter-building-agents.md
index b9c7bd2ab..16a44d7eb 100644
--- a//bedrock-agentcore/latest/devguide/code-interpreter-building-agents.md
+++ b//bedrock-agentcore/latest/devguide/code-interpreter-building-agents.md
@@ -57 +57 @@ The following Python code shows how to write an agent using Strands with the Cod
-    - sessionId: The sandbox session ID
+    - sessionId: The code interpreter session ID
@@ -82 +82 @@ The following Python code shows how to write an agent using Strands with the Cod
-        with code_session("us-west-2") as code_client:
+        with code_session("<Region>") as code_client:
@@ -160,2 +160,2 @@ The following Python code shows how to write an agent using LangChain with the C
-    # Call the Invoke method and execute the generated code, within the intialized code interpreter sandbox session
-        with code_session("us-west-2") as code_client:
+    # Call the Invoke method and execute the generated code, within the initialized code interpreter session
+        with code_session("<Region>") as code_client:
@@ -177 +177 @@ The following Python code shows how to write an agent using LangChain with the C
-                region_name="us-west-2"
+                region_name="<Region>"
@@ -195 +195 @@ The following Python code shows how to write an agent using LangChain with the C
-    - The sandbox maintains state between executions, so you can refer to previous results
+    - The code interpreter maintains state between executions, so you can refer to previous results
@@ -201 +201 @@ The following Python code shows how to write an agent using LangChain with the C
-    - sessionId: The sandbox session ID
+    - sessionId: The code interpreter session ID
@@ -245 +245 @@ Getting started: hello world example
-Read from or write files to a session
+Write files to a session