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?

posta un anno fa488 visualizzazioni
1 Risposta
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
ESPERTO
con risposta un anno fa

Accesso non effettuato. Accedi per postare una risposta.

Una buona risposta soddisfa chiaramente la domanda, fornisce un feedback costruttivo e incoraggia la crescita professionale del richiedente.

Linee guida per rispondere alle domande