

# Permissions needed in Lex V2 for assisted slot resolution
<a name="assisted-slot-permissions"></a>
+ To access this feature on Amazon Lex V2 console, ensure your console role has `bedrock:ListFoundationModels` and `bedrock:ListInferenceProfiles` permissions.
+ The IAM role associated with the bot should have `bedrock:InvokeModel` permission. When you enable the feature with the Amazon Lex V2 console the policy will get automatically added to the bot role provided your bot is using a service-linked role generated by Amazon Lex V2.

------
#### [ JSON ]

****  

  ```
  {
      "Version":"2012-10-17",		 	 	 
      "Statement": [
          {
              "Effect": "Allow",
              "Action": [
                  "bedrock:InvokeModel"
              ],
              "Resource": [
                  "arn:aws:bedrock:{{us-east-1}}::foundation-model/{{modelId}}"
              ]
          }
      ]
  }
  ```

------