From b2af8344fa182e50deefebf3590a58a8a79fe9cf Mon Sep 17 00:00:00 2001 From: konoui Date: Wed, 25 Jun 2025 20:42:58 +0900 Subject: [PATCH] fix incorrect bedrock iam prefix --- .../user-guide/concepts/model-providers/amazon-bedrock.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/user-guide/concepts/model-providers/amazon-bedrock.md b/docs/user-guide/concepts/model-providers/amazon-bedrock.md index bb0342ea..0035bb60 100644 --- a/docs/user-guide/concepts/model-providers/amazon-bedrock.md +++ b/docs/user-guide/concepts/model-providers/amazon-bedrock.md @@ -22,8 +22,8 @@ The [`BedrockModel`](../../../api-reference/models.md#strands.models.bedrock) cl To use Amazon Bedrock with Strands, your IAM user or role needs the following permissions: -- `bedrock-runtime:InvokeModelWithResponseStream` (for streaming mode) -- `bedrock-runtime:InvokeModel` (for non-streaming mode) +- `bedrock:InvokeModelWithResponseStream` (for streaming mode) +- `bedrock:InvokeModel` (for non-streaming mode) Here's a sample IAM policy that grants the necessary permissions: @@ -34,8 +34,8 @@ Here's a sample IAM policy that grants the necessary permissions: { "Effect": "Allow", "Action": [ - "bedrock-runtime:InvokeModelWithResponseStream", - "bedrock-runtime:InvokeModel" + "bedrock:InvokeModelWithResponseStream", + "bedrock:InvokeModel" ], "Resource": "*" }