airflow.providers.amazon.aws.sensors.glue_crawler

Module Contents

Classes

GlueCrawlerSensor

Waits for an AWS Glue crawler to reach any of the statuses below.

class airflow.providers.amazon.aws.sensors.glue_crawler.GlueCrawlerSensor(*, crawler_name, **kwargs)[source]

Bases: airflow.providers.amazon.aws.sensors.base_aws.AwsBaseSensor[airflow.providers.amazon.aws.hooks.glue_crawler.GlueCrawlerHook]

Waits for an AWS Glue crawler to reach any of the statuses below.

‘FAILED’, ‘CANCELLED’, ‘SUCCEEDED’

See also

For more information on how to use this sensor, take a look at the guide: Wait on an AWS Glue crawler state

Parameters
aws_hook_class[source]
template_fields: Sequence[str][source]
poke(context)[source]

Override when deriving this class.

get_hook()[source]

Return a new or pre-existing GlueCrawlerHook.

Was this entry helpful?