1 Answer
- Newest
- Most votes
- Most comments
0
The error indicates that the IAM role being used by the SageMaker Data Wrangler does not have permissions to list databases in the AWS Glue Data Catalog.
To resolve this:
Edit the IAM role attached to the SageMaker Data Wrangler execution role. Add the following policy to allow Glue Data Catalog access:
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"glue:GetDatabases",
"glue:GetTables"
],
"Resource": [
"arn:aws:glue:[REGION]:[ACCOUNTID]:catalog"
]
}
]
}
answered a year ago
Relevant content
- asked 2 years ago
- Accepted Answerasked a year ago
- Accepted Answerasked 3 years ago
- AWS OFFICIALUpdated 24 days ago
- AWS OFFICIALUpdated 2 years ago
- AWS OFFICIALUpdated 6 months ago
- AWS OFFICIALUpdated 5 months ago