airflow.providers.standard.sensors.time¶
Classes¶
Arguments required for start task execution from triggerer. |
|
Waits until the specified time of the day. |
|
Deprecated. Use TimeSensor with deferrable=True instead. |
Module Contents¶
- class airflow.providers.standard.sensors.time.StartTriggerArgs[source]¶
Arguments required for start task execution from triggerer.
- timeout: datetime.timedelta | None = None[source]¶
- class airflow.providers.standard.sensors.time.TimeSensor(*, target_time, deferrable=conf.getboolean('operators', 'default_deferrable', fallback=False), start_from_trigger=False, end_from_trigger=False, trigger_kwargs=None, **kwargs)[source]¶
Bases:
airflow.sensors.base.BaseSensorOperator
Waits until the specified time of the day.
- Parameters:
target_time (datetime.time) – time after which the job succeeds
deferrable (bool) – whether to defer execution
See also
For more information on how to use this sensor, take a look at the guide: TimeSensor
- class airflow.providers.standard.sensors.time.TimeSensorAsync(**kwargs)[source]¶
Bases:
TimeSensor
Deprecated. Use TimeSensor with deferrable=True instead.
- Sphinx-autoapi-skip: