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-aioboto3 for Route53 service.

# install with aioboto3 type annotations
python -m pip install 'types-aioboto3[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-aioboto3-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.client("route53") as Route53Client boto3 documentation

Usage example
from aioboto3.session import Session

from types_aiobotocore_route53.client import Route53Client


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

Paginators

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

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.client("route53").get_waiter("...").

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.

Usage example
from types_aiobotocore_route53.literals import AccountLimitTypeType

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

Typed dictionaries

Type annotations for typed dictionaries used in methods and schema.

Usage example
from types_aiobotocore_route53.type_defs import AccountLimitTypeDef

def get_value() -> AccountLimitTypeDef:
    return {
        "Type": ...,
        "Value": ...,
    }