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年前

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

質問に答えるためのガイドライン

関連するコンテンツ