Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/user-guide/concepts/model-providers/amazon-bedrock.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand All @@ -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": "*"
}
Expand Down