File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
docs/user-guide/concepts/model-providers Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -22,8 +22,8 @@ The [`BedrockModel`](../../../api-reference/models.md#strands.models.bedrock) cl
2222
2323To use Amazon Bedrock with Strands, your IAM user or role needs the following permissions:
2424
25- - ` bedrock-runtime :InvokeModelWithResponseStream ` (for streaming mode)
26- - ` bedrock-runtime :InvokeModel ` (for non-streaming mode)
25+ - ` bedrock:InvokeModelWithResponseStream ` (for streaming mode)
26+ - ` bedrock:InvokeModel ` (for non-streaming mode)
2727
2828Here's a sample IAM policy that grants the necessary permissions:
2929
@@ -34,8 +34,8 @@ Here's a sample IAM policy that grants the necessary permissions:
3434 {
3535 "Effect" : " Allow" ,
3636 "Action" : [
37- " bedrock-runtime :InvokeModelWithResponseStream" ,
38- " bedrock-runtime :InvokeModel"
37+ " bedrock:InvokeModelWithResponseStream" ,
38+ " bedrock:InvokeModel"
3939 ],
4040 "Resource" : " *"
4141 }
You can’t perform that action at this time.
0 commit comments