FTP to Amazon S3 Transfer Operator

Use the FTPToS3Operator transfer to copy data from a FTP server to an Amazon Simple Storage Service (S3) file.

Prerequisite Tasks

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

FTP to Amazon S3

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

To get more information about this operator visit: FTPToS3Operator

Example usage:

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

ftp_to_s3_task = FTPToS3Operator(
    task_id="ftp_to_s3_task",
    ftp_path="/tmp/ftp_path",
    s3_bucket=S3_BUCKET,
    s3_key=S3_KEY,
    replace=True,
)

Was this entry helpful?