Skip to main content
All CollectionsData DestinationsAmazon S3
Troubleshooting Amazon S3 Authorization
Troubleshooting Amazon S3 Authorization
Support avatar
Written by Support
Updated over a week ago

When using Amazon S3 make sure your permissions configuration looks like the below.

Be sure the bucket name is correct. Replace YOURBUCKETNAME in the example.

{

"Version": "2012-10-17",

"Statement": [

{

"Sid": "VisualEditor0",

"Effect": "Allow",

"Action": [

"s3:PutObject",

"s3:ListBucketMultipartUploads",

"s3:ListBucket",

"s3:GetBucketLocation",

"s3:ListMultipartUploadParts"

],

"Resource": [

"arn:aws:s3:::YOURBUCKETNAME/*",

"arn:aws:s3:::YOURBUCKETNAME"

]

}

]

}

Did this answer your question?