I have files that are stored on S3. In the user request, I want to transfer them to the FTP server of a third-party site. Amazon S3 does not support FTP / SFTP.
I am currently uploading a file from S3 to a local server using the S3 API and then transferring it to a third-party FTP server.
S3 --API β Local --FTP β Third-Party FTP
Now instead, I want to transfer files directly to a third-party FTP server directly from S3, without uploading it to the local server.
S3 --- CloudFront or other service ---> third-party FTP
How can I do this using the cloud or any other services? Any help would be appreciated.
Thanks in advance.
source share