AWS Glue - Cannot create Jupyter notebook

0

Hi, when I try to create a Jupyter notebook job with AWS Glue, I get the following error: AWSGlueError However, as you can see, the role already has those permissions: AWSGlueRolePermissions Please, could you tell me how to fix this?

已提問 1 年前檢視次數 489 次
1 個回答
1

The error message indicates that the IAM role cannot be assigned.
Are the following policies set for IAM role trust relationships?

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Effect": "Allow",
            "Principal": {
                "Service": "glue.amazonaws.com"
            },
            "Action": "sts:AssumeRole"
        }
    ]
}

Also, check with them to see if there are solutions to the following problems.
https://stackoverflow.com/a/48772179

profile picture
專家
已回答 1 年前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南