airflow.providers.amazon.aws.hooks.rds

Interact with AWS RDS.

Module Contents

Classes

RdsHook

Interact with AWS RDS using proper client from the boto3 library.

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

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

Interact with AWS RDS using proper client from the boto3 library.

Hook attribute conn has all methods that listed in documentation

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

See also

AwsBaseHook

Parameters

aws_conn_id – The Airflow connection used for AWS credentials.

property conn(self)[source]

Get the underlying boto3 RDS client (cached)

Returns

boto3 RDS client

Return type

botocore.client.RDS

Was this entry helpful?