airflow.providers.amazon.aws.sensors.rds
¶
Module Contents¶
Classes¶
Waits for RDS snapshot with a specific status. |
|
Waits for RDS export task with a specific status. |
|
Waits for an RDS instance or cluster to enter one of a number of states. |
- class airflow.providers.amazon.aws.sensors.rds.RdsSnapshotExistenceSensor(*, db_type, db_snapshot_identifier, target_statuses=None, aws_conn_id='aws_conn_id', **kwargs)[source]¶
Bases:
RdsBaseSensor
Waits for RDS snapshot with a specific status.
See also
For more information on how to use this sensor, take a look at the guide: Wait on an Amazon RDS snapshot status
- Parameters
- class airflow.providers.amazon.aws.sensors.rds.RdsExportTaskExistenceSensor(*, export_task_identifier, target_statuses=None, aws_conn_id='aws_default', **kwargs)[source]¶
Bases:
RdsBaseSensor
Waits for RDS export task with a specific status.
See also
For more information on how to use this sensor, take a look at the guide: Wait on an Amazon RDS export task status
- Parameters
- class airflow.providers.amazon.aws.sensors.rds.RdsDbSensor(*, db_identifier, db_type=RdsDbType.INSTANCE, target_statuses=None, aws_conn_id='aws_default', **kwargs)[source]¶
Bases:
RdsBaseSensor
Waits for an RDS instance or cluster to enter one of a number of states.
See also
For more information on how to use this sensor, take a look at the guide: Wait on an Amazon RDS instance or cluster status
- Parameters
db_type (airflow.providers.amazon.aws.utils.rds.RdsDbType | str) – Type of the DB - either “instance” or “cluster” (default: ‘instance’)
db_identifier (str) – The AWS identifier for the DB