mik-laj commented on a change in pull request #9320:
URL: https://github.com/apache/airflow/pull/9320#discussion_r440854530



##########
File path: airflow/operators/google_api_to_s3_transfer.py
##########
@@ -17,32 +17,32 @@
 # under the License.
 """
 This module is deprecated.
-Please use `airflow.providers.amazon.aws.operators.google_api_to_s3_transfer`.
+Please use `airflow.providers.amazon.aws.transfers.google_api_to_s3_transfer`.
 """
 
 import warnings
 
-from airflow.providers.amazon.aws.operators.google_api_to_s3_transfer import 
GoogleApiToS3TransferOperator
+from airflow.providers.amazon.aws.transfers.google_api_to_s3_transfer import 
GoogleApiToS3Operator
 
 warnings.warn(
     "This module is deprecated. "
-    "Please use 
`airflow.providers.amazon.aws.operators.google_api_to_s3_transfer`.",
+    "Please use 
`airflow.providers.amazon.aws.transfers.google_api_to_s3_transfer`.",
     DeprecationWarning, stacklevel=2
 )
 
 
-class GoogleApiToS3Transfer(GoogleApiToS3TransferOperator):
+class GoogleApiToS3Transfer(GoogleApiToS3Operator):
     """
     This class is deprecated.
     Please use:
-    
`airflow.providers.amazon.aws.operators.google_api_to_s3_transfer.GoogleApiToS3TransferOperator`."""
+    
`airflow.providers.amazon.aws.transfers.google_api_to_s3_transfer.GoogleApiToS3Operator`."""
 
     def __init__(self, *args, **kwargs):
         warnings.warn(
             """This class is deprecated.
             Please use
             `airflow.providers.amazon.aws.operators.""" +

Review comment:
       ```suggestion
               `airflow.providers.amazon.aws.transfers.""" +
   ```




----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to