Amazon S3 to FTP Transfer Operator

Use the S3ToFTPOperator transfer to copy data from an Amazon Simple Storage Service (S3) file into a remote file using FTP protocol.

Prerequisite Tasks

To use these operators, you must do a few things:

Amazon S3 To FTP

This operator copies data from Amazon S3 to a FTP server.

To get more information about this operator visit: S3ToFTPOperator

Example usage:

airflow/providers/amazon/aws/example_dags/example_s3_to_ftp.py[source]

s3_to_ftp_task = S3ToFTPOperator(
    task_id="ftp_to_s3_task",
    ftp_path="/tmp/ftp_path",
    s3_bucket=S3_BUCKET,
    s3_key=S3_KEY,
)

Was this entry helpful?