airflow.providers.amazon.aws.transfers.ftp_to_s3
¶
Module Contents¶
Classes¶
Transfer of one or more files from an FTP server to S3. |
- class airflow.providers.amazon.aws.transfers.ftp_to_s3.FTPToS3Operator(*, ftp_path, s3_bucket, s3_key, ftp_filenames=None, s3_filenames=None, ftp_conn_id='ftp_default', aws_conn_id='aws_default', replace=False, encrypt=False, gzip=False, acl_policy=None, **kwargs)[source]¶
Bases:
airflow.models.BaseOperator
Transfer of one or more files from an FTP server to S3.
See also
For more information on how to use this operator, take a look at the guide: FTP to Amazon S3 transfer operator
- Parameters
ftp_path (str) – The ftp remote path. For one file it is mandatory to include the file as well. For multiple files, it is the route where the files will be found.
s3_bucket (str) – The targeted s3 bucket in which to upload the file(s).
s3_key (str) – The targeted s3 key. For one file it must include the file path. For several, it must end with “/”.
ftp_filenames (str | list[str] | None) – Only used if you want to move multiple files. You can pass a list with exact filenames present in the ftp path, or a prefix that all files must meet. It can also be the string ‘*’ for moving all the files within the ftp path.
s3_filenames (str | list[str] | None) – Only used if you want to move multiple files and name them different from the originals from the ftp. It can be a list of filenames or file prefix (that will replace the ftp prefix).
ftp_conn_id (str) – The ftp connection id. The name or identifier for establishing a connection to the FTP server.
aws_conn_id (str | None) – The s3 connection id. The name or identifier for establishing a connection to S3.
replace (bool) – A flag to decide whether or not to overwrite the key if it already exists. If replace is False and the key exists, an error will be raised.
encrypt (bool) – If True, the file will be encrypted on the server-side by S3 and will be stored in an encrypted form while at rest in S3.
gzip (bool) – If True, the file will be compressed locally
acl_policy (str | None) – String specifying the canned ACL policy for the file being uploaded to the S3 bucket.