phanikumv commented on code in PR #28850:
URL: https://github.com/apache/airflow/pull/28850#discussion_r1066810753
##########
airflow/providers/amazon/aws/hooks/base_aws.py:
##########
@@ -843,3 +848,82 @@ def _parse_s3_config(config_file_name: str, config_format:
str | None = "boto",
config_format=config_format,
profile=profile,
)
+
+
+class AwsBaseHookAsync(AwsBaseHook):
Review Comment:
Dont think CI entity naming check would allow the class name as
`AwsBaseHookAsync` - rename it to `AwsBaseAsyncHook`
##########
airflow/providers/amazon/aws/hooks/base_aws.py:
##########
@@ -843,3 +848,82 @@ def _parse_s3_config(config_file_name: str, config_format:
str | None = "boto",
config_format=config_format,
profile=profile,
)
+
+
+class AwsBaseHookAsync(AwsBaseHook):
Review Comment:
```suggestion
class AwsBaseAsyncHook(AwsBaseHook):
```
##########
airflow/providers/amazon/aws/hooks/redshift_cluster.py:
##########
@@ -183,3 +187,86 @@ def get_cluster_snapshot_status(self, snapshot_identifier:
str, cluster_identifi
return snapshot_status
except self.get_conn().exceptions.ClusterSnapshotNotFoundFault:
return None
+
+
+class RedshiftHookAsync(AwsBaseHookAsync):
Review Comment:
```suggestion
class RedshiftAsyncHook(AwsBaseHookAsync):
```
--
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.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]