AWS S3 To RDS Download Issue

0

Below role works for RDS to S3 upload. It did not work for download_from_s3 (It throws RDS doesn't have permissions to list Amazon s3 objects from bucket name.... What am I missing?

     "Statement": [
       {
         "Sid": "s3import",
         "Action": [
           "s3:GetObject",
           "s3:PutObject",
           "s3:ListBucket"
         ],
         "Effect": "Allow",
         "Resource": [
           "arn:aws:s3:::your-s3-bucket", 
           "arn:aws:s3:::your-s3-bucket/*"
         ] 
       }
asked a year ago1292 views
1 Answer
1

Hi - This troubleshooting guide provides a step by step way to look into the issue https://aws.amazon.com/premiumsupport/knowledge-center/rds-oracle-s3-integration/

profile pictureAWS
EXPERT
answered a year 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