AWS bedrock-agentcore documentation change
Summary
Standardized region placeholders in code examples.
Security assessment
Routine updates to avoid hardcoded regions in examples, no security implications.
Diff
diff --git a/bedrock-agentcore/latest/devguide/code-interpreter-getting-started.md b/bedrock-agentcore/latest/devguide/code-interpreter-getting-started.md index 9ce70a539..70392a04e 100644 --- a//bedrock-agentcore/latest/devguide/code-interpreter-getting-started.md +++ b//bedrock-agentcore/latest/devguide/code-interpreter-getting-started.md @@ -55 +55 @@ This example uses the boto3 client to start a code interpreter session and run a - client = boto3.client("bedrock-agentcore", region_name="us-west-2", endpoint_url="https://bedrock-agentcore.us-west-2.amazonaws.com") + client = boto3.client("bedrock-agentcore", region_name="<Region>", endpoint_url="https://bedrock-agentcore.<Region>.amazonaws.com") @@ -101 +101 @@ This example uses the Amazon Bedrock AgentCore SDK, which provides a more stream - code_client = CodeInterpreter('us-west-2') + code_client = CodeInterpreter('<Region>')