airflow.providers.amazon.aws.hooks.sqs

This module contains AWS SQS hook

Module Contents

Classes

SqsHook

Interact with Amazon Simple Queue Service.

SQSHook

This hook is deprecated.

class airflow.providers.amazon.aws.hooks.sqs.SqsHook(*args, **kwargs)[source]

Bases: airflow.providers.amazon.aws.hooks.base_aws.AwsBaseHook

Interact with Amazon Simple Queue Service.

Additional arguments (such as aws_conn_id) may be specified and are passed down to the underlying AwsBaseHook.

See also

AwsBaseHook

create_queue(self, queue_name, attributes=None)[source]

Create queue using connection object

Parameters
  • queue_name (str) – name of the queue.

  • attributes (Optional[Dict]) – additional attributes for the queue (default: None) For details of the attributes parameter see SQS.create_queue()

Returns

dict with the information about the queue For details of the returned value see SQS.create_queue()

Return type

dict

send_message(self, queue_url, message_body, delay_seconds=0, message_attributes=None)[source]

Send message to the queue

Parameters
  • queue_url (str) – queue url

  • message_body (str) – the contents of the message

  • delay_seconds (int) – seconds to delay the message

  • message_attributes (Optional[Dict]) – additional attributes for the message (default: None) For details of the attributes parameter see botocore.client.SQS.send_message()

Returns

dict with the information about the message sent For details of the returned value see botocore.client.SQS.send_message()

Return type

dict

class airflow.providers.amazon.aws.hooks.sqs.SQSHook(*args, **kwargs)[source]

Bases: SqsHook

This hook is deprecated. Please use airflow.providers.amazon.aws.hooks.sqs.SqsHook.

Was this entry helpful?