From e2f96143c89fb544772c26f9eba7072cec8597e9 Mon Sep 17 00:00:00 2001 From: Josh Fell Date: Tue, 14 Sep 2021 09:02:06 -0400 Subject: [PATCH] Adding missing `replace` param in docstring --- airflow/providers/amazon/aws/transfers/salesforce_to_s3.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/airflow/providers/amazon/aws/transfers/salesforce_to_s3.py b/airflow/providers/amazon/aws/transfers/salesforce_to_s3.py index 09b49c1971ea2..73fd9811095dd 100644 --- a/airflow/providers/amazon/aws/transfers/salesforce_to_s3.py +++ b/airflow/providers/amazon/aws/transfers/salesforce_to_s3.py @@ -56,6 +56,8 @@ class SalesforceToS3Operator(BaseOperator): :type record_time_added: bool :param aws_conn_id: The name of the connection that has the parameters we need to connect to S3. :type aws_conn_id: str + :param replace: A flag to decide whether or not to overwrite the S3 key if it already exists. If set to + False and the key exists an error will be raised. :type replace: bool :param encrypt: 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.