From 9171c2a3c51d1ffbcf9d7c1d1059c0847c0a0da8 Mon Sep 17 00:00:00 2001 From: moritalous Date: Thu, 15 Jan 2026 07:07:25 +0000 Subject: [PATCH] docs(bedrock): add aws login credential option Document aws login as a recommended authentication method for local development. Include instructions for optional CRT installation to enhance performance. --- .../concepts/model-providers/amazon-bedrock.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/docs/user-guide/concepts/model-providers/amazon-bedrock.md b/docs/user-guide/concepts/model-providers/amazon-bedrock.md index 4666cf8a..a3af70b7 100644 --- a/docs/user-guide/concepts/model-providers/amazon-bedrock.md +++ b/docs/user-guide/concepts/model-providers/amazon-bedrock.md @@ -123,6 +123,22 @@ For more details, see the [Amazon Bedrock documentation on modifying model acces For complete details on credential configuration and resolution, see the [boto3 credentials documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/guide/credentials.html#configuring-credentials). + **Option 4: aws login** + + `aws login` provides browser-based authentication for temporary credentials. Requires AWS CLI version 2.32.0 or later. + + ```bash + aws login + ``` + + To use `aws login` with enhanced performance, install Strands with CRT support: + + ```bash + pip install strands-agent[crt] + ``` + + See the [Login for AWS local development using console credentials](https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-sign-in.html) documentation for more details. + === "TypeScript" The TypeScript SDK uses the [AWS SDK for JavaScript v3](https://docs.aws.amazon.com/sdk-for-javascript/v3/developer-guide/welcome.html) to make calls to Amazon Bedrock. The SDK has its own credential resolution system that determines which credentials to use when making requests to AWS.