airflow.providers.amazon.aws.notifications.chime

Module Contents

Classes

ChimeNotifier

Chime notifier to send messages to a chime room via callbacks.

Attributes

send_chime_notification

class airflow.providers.amazon.aws.notifications.chime.ChimeNotifier(*, chime_conn_id, message='This is the default chime notifier message')[source]

Bases: airflow.notifications.basenotifier.BaseNotifier

Chime notifier to send messages to a chime room via callbacks.

Parameters
  • chime_conn_id (str) – The chime connection to use with Endpoint as “https://hooks.chime.aws” and the webhook token in the form of `{webhook.id}?token{webhook.token}`

  • message (str) – The message to send to the chime room associated with the webhook.

template_fields = ('message',)[source]
hook()[source]

To reduce overhead cache the hook for the notifier.

notify(context)[source]

Send a message to a Chime Chat Room.

airflow.providers.amazon.aws.notifications.chime.send_chime_notification[source]

Was this entry helpful?