Skip to content

Commit

Permalink
Correct parameter names in docstring for S3CreateObjectOperator (#3…
Browse files Browse the repository at this point in the history
  • Loading branch information
mjsqu committed Sep 11, 2023
1 parent 77dd4f0 commit 891b33b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions airflow/providers/amazon/aws/operators/s3.py
Expand Up @@ -331,10 +331,10 @@ class S3CreateObjectOperator(BaseOperator):
:ref:`howto/operator:S3CreateObjectOperator`
:param s3_bucket: Name of the S3 bucket where to save the object. (templated)
It should be omitted when `bucket_key` is provided as a full s3:// url.
It should be omitted when ``s3_key`` is provided as a full s3:// url.
:param s3_key: The key of the object to be created. (templated)
It can be either full s3:// style url or relative path from root level.
When it's specified as a full s3:// url, please omit bucket_name.
When it's specified as a full s3:// url, please omit ``s3_bucket``.
:param data: string or bytes to save as content.
:param replace: If True, it will overwrite the key if it already exists
:param encrypt: If True, the file will be encrypted on the server-side
Expand Down

0 comments on commit 891b33b

Please sign in to comment.