Page 1 of 1

S3 Downloader - can't select folder

Posted: Mon Sep 11, 2023 12:45 pm
by Paulyy
I'm a little stuck with the S3 downloader.

I have set it up accordingly,
Access key, secret key etc.
My bucket list is visible in the dropdown.
In the "folder" property, if i leave it blank, it'll download all files from the bucket including files in all subfolders.
but i want it to look into the "web-upload" folder and download the job folders in the "web-upload" folder.

As soon as i enter the folder name "web-upload" it goes red. I've tried adding "/web-upload" "web-upload/" ""web-upload/*" etc and I cant get it to recognise the folder inside the S3 bucket

This is my permission JSON for IAM: (with my bucket name of course)

{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"s3:GetObject",
"s3:DeleteObject",
"s3:ListBucket"
],
"Resource": [
"arn:aws:s3:::mybucketname",
"arn:aws:s3:::mybucketname/*"
]
}
]
}