在哪里可以找到 AWS ARN 中服务和资源类型部分的可能值列表?
Where can I find the list of possible values for the service and resource type parts in AWS ARN?
我正在 AWS ARN 中搜索服务和资源类型部分的所有可能值的列表。
文档中解释了这两部分:https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_identifiers.html
如果有一些 API 我可以 运行 并以 json 或其他数据格式获取列表,那就更好了。
没有 ARN 的“所有可能值”的中央参考。
每个 AWS 服务都有使用 ARN 的资源。由于地址 space 被分为 'services',每个服务都可以创建自己的资源引用(例如 Amazon EC2 会有 instance
和 volume
)。
a list of all possible values for the service and resource type parts in an AWS ARN
AWS Service Authorization Reference is what you're looking for, specifically: Actions, resources, and condition keys for AWS services.
The Service Authorization Reference provides a list of the actions, resources, and condition keys that are supported by each AWS service. You can specify actions, resources, and condition keys in AWS Identity and Access Management (IAM) policies to manage access to AWS resources.
If there is some API I can run and get the list in json or other data format, it would be even better.
遗憾的是,API 不存在此信息,因为它不是服务,而是更多的文档参考。
找到 https://awspolicygen.s3.amazonaws.com/js/policies.js 如果您想要 json 包含所有服务和操作的文件以程序化方式处理。
我正在 AWS ARN 中搜索服务和资源类型部分的所有可能值的列表。
文档中解释了这两部分:https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_identifiers.html
如果有一些 API 我可以 运行 并以 json 或其他数据格式获取列表,那就更好了。
没有 ARN 的“所有可能值”的中央参考。
每个 AWS 服务都有使用 ARN 的资源。由于地址 space 被分为 'services',每个服务都可以创建自己的资源引用(例如 Amazon EC2 会有 instance
和 volume
)。
a list of all possible values for the service and resource type parts in an AWS ARN
AWS Service Authorization Reference is what you're looking for, specifically: Actions, resources, and condition keys for AWS services.
The Service Authorization Reference provides a list of the actions, resources, and condition keys that are supported by each AWS service. You can specify actions, resources, and condition keys in AWS Identity and Access Management (IAM) policies to manage access to AWS resources.
If there is some API I can run and get the list in json or other data format, it would be even better.
遗憾的是,API 不存在此信息,因为它不是服务,而是更多的文档参考。
找到 https://awspolicygen.s3.amazonaws.com/js/policies.js 如果您想要 json 包含所有服务和操作的文件以程序化方式处理。