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
22
22
23
23
To use Amazon Bedrock with Strands, your IAM user or role needs the following permissions:
24
24
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)
27
27
28
28
Here's a sample IAM policy that grants the necessary permissions:
29
29
@@ -34,8 +34,8 @@ Here's a sample IAM policy that grants the necessary permissions:
34
34
{
35
35
"Effect" : " Allow" ,
36
36
"Action" : [
37
- " bedrock-runtime :InvokeModelWithResponseStream" ,
38
- " bedrock-runtime :InvokeModel"
37
+ " bedrock:InvokeModelWithResponseStream" ,
38
+ " bedrock:InvokeModel"
39
39
],
40
40
"Resource" : " *"
41
41
}
You can’t perform that action at this time.
0 commit comments