Skip to content

RDS module

Index > RDS

Auto-generated documentation for RDS type annotations stubs module types-aiobotocore-rds.

How to install

From PyPI with pip

Install types-aioboto3 for RDS service.

# install with aioboto3 type annotations
python -m pip install 'types-aioboto3[rds]'


# Lite version does not provide session.client/resource overloads
# it is more RAM-friendly, but requires explicit type annotations
python -m pip install 'types-aioboto3-lite[rds]'


# standalone installation
python -m pip install types-aiobotocore-rds

How to uninstall

python -m pip uninstall -y types-aiobotocore-rds

Usage

Code samples can be found in Examples.

RDSClient

Type annotations and code completion for session.client("rds") as RDSClient boto3 documentation

Usage example
from aioboto3.session import Session

from types_aiobotocore_rds.client import RDSClient


session = Session()
async with session.client("rds") as client:
    client: RDSClient

Paginators

Type annotations and code completion for paginators from session.client("rds").get_paginator("...").

Usage example
from types_aiobotocore_rds.paginator import DescribeCertificatesPaginator

def get_describe_certificates_paginator() -> DescribeCertificatesPaginator:
    return client.get_paginator("describe_certificates"))

Waiters

Type annotations and code completion for waiters from session.client("rds").get_waiter("...").

Usage example
from types_aiobotocore_rds.waiter import DBClusterAvailableWaiter

def get_db_cluster_available_waiter() -> DBClusterAvailableWaiter:
    return Session().client("rds").get_waiter("db_cluster_available")

Literals

Type annotations for literals used in methods and schema.

Usage example
from types_aiobotocore_rds.literals import ActivityStreamModeType

def get_value() -> ActivityStreamModeType:
    return "async"

Typed dictionaries

Type annotations for typed dictionaries used in methods and schema.

Usage example
from types_aiobotocore_rds.type_defs import AccountQuotaTypeDef

def get_value() -> AccountQuotaTypeDef:
    return {
        "AccountQuotaName": ...,
    }