【发布时间】:2015-11-12 23:34:36
【问题描述】:
AWS 的 AWS IAM 政策文档 (shown here) 表明以下政策为角色提供了完全访问 API 网关的权限
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"apigateway:*"
],
"Resource": [
"*"
]
}
]
}
当以 API Gateway 为目标模拟该策略时,该策略会拒绝访问。这似乎与提供的文档直接矛盾。
【问题讨论】:
标签: amazon-web-services amazon-iam amazon-cognito aws-api-gateway