I have some files that are stored on S3. On users request, I want to transfer them to FTP server of a third party site. Amazon S3 does not support FTP/SFTP.
Currently I am downloading the file from S3 to my local server using S3 APIs and then transferring it to third party FTP server.
S3 --API--> Local --FTP--> Third party FTP
Now, instead I want to transfer the files directly to third party FTP server directly from S3 without downloading it to my local server.
S3 ---CloudFront or Other Service---> Third Party FTP
How can I do it using cloudfront or any other services? Any Help will be appreciated.
Thanks in advance.