简体   繁体   English

用户无权执行 rds:DescribeDBEnginerVersions 错误 RDS Amazon

[英]User is not authorized to perform rds:DescribeDBEnginerVersions Error RDS Amazon

When I navigate to RDS and try to create a new DB Instance, This error is displayed.当我导航到 RDS 并尝试创建新的数据库实例时,会显示此错误。 Can anyone help as What might be the cause?任何人都可以提供帮助,因为这可能是什么原因? How to solve this error?如何解决这个错误? is this on my side or should I contact AWS Help Centre?这是在我这边还是我应该联系AWS 帮助中心?

错误截图

TIA TIA

There is such a permission.有这样的权限。 You can add it to your IAM user (or your admin can do it) in a number of ways.您可以通过多种方式将其添加到您的 IAM 用户(或者您的管理员可以这样做)。 One way is through an inline policy :一种方法是通过内联策略

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Sid": "VisualEditor0",
            "Effect": "Allow",
            "Action": "rds:DescribeDBEngineVersions",
            "Resource": "*"
        }
    ]
}

The "Resource": "*" must be as is. "Resource": "*"必须保持原样。 rds:DescribeDBEngineVersions is a generic permission, not applicable to a specific database. rds:DescribeDBEngineVersions是通用权限,不适用于特定数据库。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM