Probably a very silly question - but I'm trying to have a GoodData project download a file from S3 for import into GoodData.
The file is uploaded to S3, and the console there gives the link in format:
https://s3.amazonaws.com/bucketname/subFolder/subfolder/fileName.csv.gz.
However when I try and access this, GoodData gives an error of
initilization failed.
Error initializing file operation. Reason: No bucket name specified in the host address.
The GoodData documentation seems to indicate the format should instead be http://${S3_ACCESS_KEY}:${S3_SECRET_KEY}@bucketname.s3.amazonaws.com/filename.csv
However when doing this, or
http://${S3_ACCESS_KEY}:${S3_SECRET_KEY}@bucketname.s3.amazonaws.com/subFolder/subfolder/filename.csv
I get that the file cannot be found.