场景: 限制仅能访问应用型负载均衡的全部操作。策略示例:
{ "Statement": [ { "Effect": "Allow", "Action": [ "alb:*" ], "Resource": [ "*" ] } ] }
解读: 这条策略使用通配符*来概括服务alb内的全部操作。
*