Your role for jupyter doesnt have acces to s3 location where notebooks are planned to be stored.
You can modify the policy of the s3 bucket that this notebook shows at the time of creation.
Try changing it to sometthing like
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Principal": {
"AWS": "arn:aws:iam::632293491421:role/EMR_DefaultRole"
},
"Action": [
"s3:ListBucket"
],
"Resource": [
"arn:aws:s3:::aws-emr-resources-632293491421-eu-west-1"
]
},
{
"Effect": "Allow",
"Principal": {
"AWS": "arn:aws:iam::632293491421:role/EMR_DefaultRole"
},
"Action": [
"s3:PutObject",
"s3:GetObject",
"s3:DeleteObject"
],
"Resource": [
"arn:aws:s3:::aws-emr-resources-632293491421-eu-west-1/*"
]
}
]
}
Make sure you use correct number inplace of 632293491421
, which will be showing at your bucket
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…