prodriguezdefino commented on code in PR #34581:
URL: https://github.com/apache/beam/pull/34581#discussion_r2045763330


##########
sdks/python/apache_beam/io/aws/sqsio.py:
##########
@@ -0,0 +1,74 @@
+#
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#    http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+import apache_beam as beam
+from apache_beam.transforms.external import BeamJarExpansionService
+from apache_beam.transforms.external import SchemaAwareExternalTransform
+
+__all__ = ['ReadFromSQS']
+
+
+class ReadFromSQS(beam.PTransform):
+  """Reads messages from an AWS SQS queue.
+    
+    Returns a PCollection of Beam Rows, each representing a SqsMessage object.
+    This transform uses the Java SDK implementation, and most of AWS related 
+    connectivity configurations can be set through a custom PipelineOptions 
+    object with the same properties seen on the AwsOptions for Java SDK. 
+    For more information see: 
+    
https://beam.apache.org/releases/javadoc/current/org/apache/beam/sdk/io/aws/sqs/SqsIO.html
+    """
+  URN = "beam:schematransform:org.apache.beam:aws:sqs_read:v1"
+
+  def __init__(

Review Comment:
   Ok, I made the changes to make the IT use the ExternalTransformProvider. 
Thanks for for the pointers. 



-- 
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: github-unsubscr...@beam.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to