Amazon S3 to SFTP Transfer Operator

Use the S3ToSFTPOperator transfer to copy the data from an Amazon Simple Storage Service (S3) file into a remote file using SFTP protocol. For more information about the service visits Amazon Transfer for SFTP API documentation.

Prerequisite Tasks

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

Amazon S3 To SFTP

This operator loads data from Amazon S3 to a SFTP server.

To get more information about this operator visit: S3ToSFTPOperator

Example usage:

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

create_s3_to_sftp_job = S3ToSFTPOperator(
    task_id="create_s3_to_sftp_job",
    sftp_path="sftp_path",
    s3_bucket=S3_BUCKET,
    s3_key=S3_KEY,
)

Was this entry helpful?