Source code for airflow.providers.amazon.aws.operators.sqs
# 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."""Publish message to SQS queue"""importwarningsfromtypingimportTYPE_CHECKING,Optional,Sequencefromairflow.modelsimportBaseOperatorfromairflow.providers.amazon.aws.hooks.sqsimportSqsHookifTYPE_CHECKING:fromairflow.utils.contextimportContext
[docs]classSqsPublishOperator(BaseOperator):""" Publish message to a SQS queue. .. seealso:: For more information on how to use this operator, take a look at the guide: :ref:`howto/operator:SqsPublishOperator` :param sqs_queue: The SQS queue url (templated) :param message_content: The message content (templated) :param message_attributes: additional attributes for the message (default: None) For details of the attributes parameter see :py:meth:`botocore.client.SQS.send_message` :param delay_seconds: message delay (templated) (default: 1 second) :param aws_conn_id: AWS connection id (default: aws_default) """
[docs]defexecute(self,context:'Context'):""" Publish the message to SQS queue :param context: the context object :return: dict with information about the message sent For details of the returned dict see :py:meth:`botocore.client.SQS.send_message` :rtype: dict """hook=SqsHook(aws_conn_id=self.aws_conn_id)result=hook.send_message(queue_url=self.sqs_queue,message_body=self.message_content,delay_seconds=self.delay_seconds,message_attributes=self.message_attributes,)self.log.info('result is send_message is %s',result)returnresult
[docs]classSQSPublishOperator(SqsPublishOperator):""" This operator is deprecated. Please use :class:`airflow.providers.amazon.aws.operators.sqs.SqsPublishOperator`. """def__init__(self,*args,**kwargs):warnings.warn("This operator is deprecated. ""Please use `airflow.providers.amazon.aws.operators.sqs.SqsPublishOperator`.",DeprecationWarning,stacklevel=2,)super().__init__(*args,**kwargs)