Skip to content

Route53 module#

Index > Route53

Auto-generated documentation for Route53 type annotations stubs module types-aiobotocore-route53.

How to install#

From PyPI with pip#

Install types-aiobotocore for Route53 service.

# install with aiobotocore type annotations
python -m pip install 'types-aiobotocore[route53]'


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


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

How to uninstall#

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

Usage#

Code samples can be found in Examples.

Route53Client#

Type annotations and code completion for session.create_client("route53") as Route53Client boto3 documentation

# Route53Client usage example

from aiobotocore.session import get_session

from types_aiobotocore_route53.client import Route53Client


session = get_session()
async with session.create_client("route53") as client:
    client: Route53Client

Paginators#

Type annotations and code completion for paginators from session.create_client("route53").get_paginator("...").

# ListCidrBlocksPaginator usage example

from types_aiobotocore_route53.paginator import ListCidrBlocksPaginator

def get_list_cidr_blocks_paginator() -> ListCidrBlocksPaginator:
    return client.get_paginator("list_cidr_blocks"))

Waiters#

Type annotations and code completion for waiters from session.create_client("route53").get_waiter("...").

# ResourceRecordSetsChangedWaiter usage example

from types_aiobotocore_route53.waiter import ResourceRecordSetsChangedWaiter

def get_resource_record_sets_changed_waiter() -> ResourceRecordSetsChangedWaiter:
    return Session().client("route53").get_waiter("resource_record_sets_changed")

Literals#

Type annotations for literals used in methods and schema.

# AccountLimitTypeType usage example

from types_aiobotocore_route53.literals import AccountLimitTypeType

def get_value() -> AccountLimitTypeType:
    return "MAX_HEALTH_CHECKS_BY_OWNER"

Type definitions#

Type annotations for type definitions used in methods and schema.