列表使用BOTO3附加到角色附加的内联策略

发布于 2025-02-06 17:42:19 字数 163 浏览 2 评论 0原文

我想列出角色所附的所有内联策略。 我尝试使用 cole_list = client.list_attached_role_policies(rolename = roun_name),但它仅返回仅托管策略的列表,而不是内联策略。 如何获得使用Boto3附加到角色的内联策略列表。

I want to list all the inline policies attached to a role.
I tried using role_list=client.list_attached_role_policies(RoleName=role_name), but it returns list of managed policies only and not the inline policies.
How can I get list of inline polices attached to a role using boto3.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

最美的太阳 2025-02-13 17:42:19

您必须使用

列出了嵌入在指定的IAM角色中的内联策略的名称。

You have to use list_role_policies:

Lists the names of the inline policies that are embedded in the specified IAM role.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文