AWS Data Lakehouse IAM Role
Determine the Consuming Principal
Set or Modify the S3 Bucket Policy
{
"Version": "2012-10-17",
"Id": "Policy1611277539797",
"Statement": [
{
"Sid": "Parquet_Cross_Account_ListBucket",
"Effect": "Allow",
"Principal": {
"AWS": "arn:aws:iam::[AWS_ACCOUNT_NUMBER]:root"
},
"Action": "s3:ListBucket",
"Resource": "arn:aws:s3:::[MY_BUCKET_NAME]",
"Condition": {
"StringLike": {
"s3:prefix": "parquet/*"
}
}
},
{
"Sid": "Parquet_Cross_Account_GetObject",
"Effect": "Allow",
"Principal": {
"AWS": "arn:aws:iam::[AWS_ACCOUNT_NUMBER]:root"
},
"Action": "s3:GetObject",
"Resource": "arn:aws:s3:::[MY_BUCKET_NAME]/parquet/*"
}
]
}Create an IAM Policy
Create an IAM Role
Assume the Role
Last updated
Was this helpful?

