在 AWS Chime 中,尝试列出 PRIVATE 应用程序实例通道会出现权限错误,尽管发出请求的用户是管理员。我错过了什么吗?
更新:似乎如果我首先将用户提升为管理员,然后创建频道,那么列表频道工作......奇怪(?)
这是我运行的命令序列:
创建一个应用实例:
aws chime create-app-instance --name test_app
然后创建了一个用户:
aws chime create-app-instance-user --app-instance-arn <test_app arn> --app-instance-user-id 112233 --name xyz
然后创建了一个频道:
aws chime create-channel --app-instance-arn <test_app arn> --chime-bearer <xyz user arn> --name test_channel
然后让 xyz 用户成为管理员
aws chime create-app-instance-admin --app-instance-arn <test_app arn> --app-instance-admin-arn <xyz user arn>
最后调用列出私人频道返回错误:
aws chime list-channels --app-instance-arn <test_app arn> --chime-bearer <xyz user arn> --privacy PRIVATE
>> An error occurred (ForbiddenException) when calling the ListChannels operation: You do not have sufficient access to perform this action.
调用list-app-instance-admins
确实将用户 xyz 作为 AppInstanceAdmin 返回...
谢谢。