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?

asked 10 months ago462 views
1 Answer
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
EXPERT
answered 10 months ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions