I'm trying to make an IAM policy through which I can allow the user to run the tests in API Gateway without making changes to the resources. What policy should I grant the user?
Asked
Active
Viewed 125 times
1 Answers
0
Use below policy:
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "VisualEditor0",
"Effect": "Allow",
"Action": "execute-api:Invoke",
"Resource": "*"
}
]
}
If you need more details, please check this Doc: https://docs.aws.amazon.com/apigateway/latest/developerguide/api-gateway-control-access-using-iam-policies-to-invoke-api.html

Cloud Karamchari
- 71
- 3
-
Thankyou sm. I'll try to use this and would let you know. – Johnny Bravo Feb 03 '23 at 14:38
-
Welcome, you can contact us on https://www.cloudkaramchari.com/contact/ – Cloud Karamchari Feb 03 '23 at 14:53