Thanks for the quick reply - that did work!
I did not try that since I don't think I've ever used right-click functionality anywhere in SyncBack before - didn't even know it was there. Image may be NSFW.
Clik here to view.
FYI - right-click does not work during initial profile setup, but you can just choose DONE when creating a new profile and it still lets you save Amazon S3 as the destination then right-click does work later.
It would probably be useful to others if the SyncBack docs were updated to show the minimum user security policy required for SyncBack to work with S3 (maybe it's there and I can't find it). Here is the minimum policy document I had to attach to
the Amazon S3 user I'm using (NOTE: this is without allowing "ListAllBuckets" Action):
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"s3:ListBucket",
"s3:GetBucketLocation"
],
"Resource": "arn:aws:s3:::bucket-name"
},
{
"Effect": "Allow",
"Action": [
"s3:PutObject",
"s3:GetObject",
"s3:DeleteObject"
],
"Resource": "arn:aws:s3:::bucket-name/*"
}
]
}
If you want to be able to see all the buckets in the SyncBack bucket list, you have to add this to the user's security policy document:
{
"Effect": "Allow",
"Action": ["s3:ListAllMyBuckets"],
"Resource": "arn:aws:s3:::*"
},
Thanks!
Jeremy
I did not try that since I don't think I've ever used right-click functionality anywhere in SyncBack before - didn't even know it was there. Image may be NSFW.
Clik here to view.

FYI - right-click does not work during initial profile setup, but you can just choose DONE when creating a new profile and it still lets you save Amazon S3 as the destination then right-click does work later.
It would probably be useful to others if the SyncBack docs were updated to show the minimum user security policy required for SyncBack to work with S3 (maybe it's there and I can't find it). Here is the minimum policy document I had to attach to
the Amazon S3 user I'm using (NOTE: this is without allowing "ListAllBuckets" Action):
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"s3:ListBucket",
"s3:GetBucketLocation"
],
"Resource": "arn:aws:s3:::bucket-name"
},
{
"Effect": "Allow",
"Action": [
"s3:PutObject",
"s3:GetObject",
"s3:DeleteObject"
],
"Resource": "arn:aws:s3:::bucket-name/*"
}
]
}
If you want to be able to see all the buckets in the SyncBack bucket list, you have to add this to the user's security policy document:
{
"Effect": "Allow",
"Action": ["s3:ListAllMyBuckets"],
"Resource": "arn:aws:s3:::*"
},
Thanks!
Jeremy