Paginators#
Auto-generated documentation for Route53 type annotations stubs module types-boto3-route53.
ListCidrBlocksPaginator#
Type annotations and code completion for boto3.client("route53").get_paginator("list_cidr_blocks").
 boto3 documentation
# ListCidrBlocksPaginator usage example
from boto3.session import Session
from types_boto3_route53.paginator import ListCidrBlocksPaginator
def get_list_cidr_blocks_paginator() -> ListCidrBlocksPaginator:
    return Session().client("route53").get_paginator("list_cidr_blocks")# ListCidrBlocksPaginator usage example with type annotations
from boto3.session import Session
from types_boto3_route53.paginator import ListCidrBlocksPaginator
session = Session()
client = Session().client("route53")  # (1)
paginator: ListCidrBlocksPaginator = client.get_paginator("list_cidr_blocks")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)- client: Route53Client
- paginator: ListCidrBlocksPaginator
- item: PageIterator[ListCidrBlocksResponseTypeDef]
paginate#
Type annotations and code completion for ListCidrBlocksPaginator.paginate method.
# paginate method definition
def paginate(
    self,
    *,
    CollectionId: str,
    LocationName: str = ...,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> botocore.paginate.PageIterator[ListCidrBlocksResponseTypeDef]:  # (2)
    ...- See PaginatorConfigTypeDef
- See PageIterator[ListCidrBlocksResponseTypeDef]
# paginate method usage example with argument unpacking
kwargs: ListCidrBlocksRequestPaginateTypeDef = {  # (1)
    "CollectionId": ...,
}
parent.paginate(**kwargs)ListCidrCollectionsPaginator#
Type annotations and code completion for boto3.client("route53").get_paginator("list_cidr_collections").
 boto3 documentation
# ListCidrCollectionsPaginator usage example
from boto3.session import Session
from types_boto3_route53.paginator import ListCidrCollectionsPaginator
def get_list_cidr_collections_paginator() -> ListCidrCollectionsPaginator:
    return Session().client("route53").get_paginator("list_cidr_collections")# ListCidrCollectionsPaginator usage example with type annotations
from boto3.session import Session
from types_boto3_route53.paginator import ListCidrCollectionsPaginator
session = Session()
client = Session().client("route53")  # (1)
paginator: ListCidrCollectionsPaginator = client.get_paginator("list_cidr_collections")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)- client: Route53Client
- paginator: ListCidrCollectionsPaginator
- item: PageIterator[ListCidrCollectionsResponseTypeDef]
paginate#
Type annotations and code completion for ListCidrCollectionsPaginator.paginate method.
# paginate method definition
def paginate(
    self,
    *,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> botocore.paginate.PageIterator[ListCidrCollectionsResponseTypeDef]:  # (2)
    ...- See PaginatorConfigTypeDef
- See PageIterator[ListCidrCollectionsResponseTypeDef]
# paginate method usage example with argument unpacking
kwargs: ListCidrCollectionsRequestPaginateTypeDef = {  # (1)
    "PaginationConfig": ...,
}
parent.paginate(**kwargs)ListCidrLocationsPaginator#
Type annotations and code completion for boto3.client("route53").get_paginator("list_cidr_locations").
 boto3 documentation
# ListCidrLocationsPaginator usage example
from boto3.session import Session
from types_boto3_route53.paginator import ListCidrLocationsPaginator
def get_list_cidr_locations_paginator() -> ListCidrLocationsPaginator:
    return Session().client("route53").get_paginator("list_cidr_locations")# ListCidrLocationsPaginator usage example with type annotations
from boto3.session import Session
from types_boto3_route53.paginator import ListCidrLocationsPaginator
session = Session()
client = Session().client("route53")  # (1)
paginator: ListCidrLocationsPaginator = client.get_paginator("list_cidr_locations")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)- client: Route53Client
- paginator: ListCidrLocationsPaginator
- item: PageIterator[ListCidrLocationsResponseTypeDef]
paginate#
Type annotations and code completion for ListCidrLocationsPaginator.paginate method.
# paginate method definition
def paginate(
    self,
    *,
    CollectionId: str,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> botocore.paginate.PageIterator[ListCidrLocationsResponseTypeDef]:  # (2)
    ...- See PaginatorConfigTypeDef
- See PageIterator[ListCidrLocationsResponseTypeDef]
# paginate method usage example with argument unpacking
kwargs: ListCidrLocationsRequestPaginateTypeDef = {  # (1)
    "CollectionId": ...,
}
parent.paginate(**kwargs)ListHealthChecksPaginator#
Type annotations and code completion for boto3.client("route53").get_paginator("list_health_checks").
 boto3 documentation
# ListHealthChecksPaginator usage example
from boto3.session import Session
from types_boto3_route53.paginator import ListHealthChecksPaginator
def get_list_health_checks_paginator() -> ListHealthChecksPaginator:
    return Session().client("route53").get_paginator("list_health_checks")# ListHealthChecksPaginator usage example with type annotations
from boto3.session import Session
from types_boto3_route53.paginator import ListHealthChecksPaginator
session = Session()
client = Session().client("route53")  # (1)
paginator: ListHealthChecksPaginator = client.get_paginator("list_health_checks")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)- client: Route53Client
- paginator: ListHealthChecksPaginator
- item: PageIterator[ListHealthChecksResponseTypeDef]
paginate#
Type annotations and code completion for ListHealthChecksPaginator.paginate method.
# paginate method definition
def paginate(
    self,
    *,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> botocore.paginate.PageIterator[ListHealthChecksResponseTypeDef]:  # (2)
    ...- See PaginatorConfigTypeDef
- See PageIterator[ListHealthChecksResponseTypeDef]
# paginate method usage example with argument unpacking
kwargs: ListHealthChecksRequestPaginateTypeDef = {  # (1)
    "PaginationConfig": ...,
}
parent.paginate(**kwargs)ListHostedZonesPaginator#
Type annotations and code completion for boto3.client("route53").get_paginator("list_hosted_zones").
 boto3 documentation
# ListHostedZonesPaginator usage example
from boto3.session import Session
from types_boto3_route53.paginator import ListHostedZonesPaginator
def get_list_hosted_zones_paginator() -> ListHostedZonesPaginator:
    return Session().client("route53").get_paginator("list_hosted_zones")# ListHostedZonesPaginator usage example with type annotations
from boto3.session import Session
from types_boto3_route53.paginator import ListHostedZonesPaginator
session = Session()
client = Session().client("route53")  # (1)
paginator: ListHostedZonesPaginator = client.get_paginator("list_hosted_zones")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)- client: Route53Client
- paginator: ListHostedZonesPaginator
- item: PageIterator[ListHostedZonesResponseTypeDef]
paginate#
Type annotations and code completion for ListHostedZonesPaginator.paginate method.
# paginate method definition
def paginate(
    self,
    *,
    DelegationSetId: str = ...,
    HostedZoneType: HostedZoneTypeType = ...,  # (1)
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (2)
) -> botocore.paginate.PageIterator[ListHostedZonesResponseTypeDef]:  # (3)
    ...- See HostedZoneTypeType
- See PaginatorConfigTypeDef
- See PageIterator[ListHostedZonesResponseTypeDef]
# paginate method usage example with argument unpacking
kwargs: ListHostedZonesRequestPaginateTypeDef = {  # (1)
    "DelegationSetId": ...,
}
parent.paginate(**kwargs)ListQueryLoggingConfigsPaginator#
Type annotations and code completion for boto3.client("route53").get_paginator("list_query_logging_configs").
 boto3 documentation
# ListQueryLoggingConfigsPaginator usage example
from boto3.session import Session
from types_boto3_route53.paginator import ListQueryLoggingConfigsPaginator
def get_list_query_logging_configs_paginator() -> ListQueryLoggingConfigsPaginator:
    return Session().client("route53").get_paginator("list_query_logging_configs")# ListQueryLoggingConfigsPaginator usage example with type annotations
from boto3.session import Session
from types_boto3_route53.paginator import ListQueryLoggingConfigsPaginator
session = Session()
client = Session().client("route53")  # (1)
paginator: ListQueryLoggingConfigsPaginator = client.get_paginator("list_query_logging_configs")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)- client: Route53Client
- paginator: ListQueryLoggingConfigsPaginator
- item: PageIterator[ListQueryLoggingConfigsResponseTypeDef]
paginate#
Type annotations and code completion for ListQueryLoggingConfigsPaginator.paginate method.
# paginate method definition
def paginate(
    self,
    *,
    HostedZoneId: str = ...,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> botocore.paginate.PageIterator[ListQueryLoggingConfigsResponseTypeDef]:  # (2)
    ...- See PaginatorConfigTypeDef
- See PageIterator[ListQueryLoggingConfigsResponseTypeDef]
# paginate method usage example with argument unpacking
kwargs: ListQueryLoggingConfigsRequestPaginateTypeDef = {  # (1)
    "HostedZoneId": ...,
}
parent.paginate(**kwargs)ListResourceRecordSetsPaginator#
Type annotations and code completion for boto3.client("route53").get_paginator("list_resource_record_sets").
 boto3 documentation
# ListResourceRecordSetsPaginator usage example
from boto3.session import Session
from types_boto3_route53.paginator import ListResourceRecordSetsPaginator
def get_list_resource_record_sets_paginator() -> ListResourceRecordSetsPaginator:
    return Session().client("route53").get_paginator("list_resource_record_sets")# ListResourceRecordSetsPaginator usage example with type annotations
from boto3.session import Session
from types_boto3_route53.paginator import ListResourceRecordSetsPaginator
session = Session()
client = Session().client("route53")  # (1)
paginator: ListResourceRecordSetsPaginator = client.get_paginator("list_resource_record_sets")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)- client: Route53Client
- paginator: ListResourceRecordSetsPaginator
- item: PageIterator[ListResourceRecordSetsResponseTypeDef]
paginate#
Type annotations and code completion for ListResourceRecordSetsPaginator.paginate method.
# paginate method definition
def paginate(
    self,
    *,
    HostedZoneId: str,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> botocore.paginate.PageIterator[ListResourceRecordSetsResponseTypeDef]:  # (2)
    ...- See PaginatorConfigTypeDef
- See PageIterator[ListResourceRecordSetsResponseTypeDef]
# paginate method usage example with argument unpacking
kwargs: ListResourceRecordSetsRequestPaginateTypeDef = {  # (1)
    "HostedZoneId": ...,
}
parent.paginate(**kwargs)ListVPCAssociationAuthorizationsPaginator#
Type annotations and code completion for boto3.client("route53").get_paginator("list_vpc_association_authorizations").
 boto3 documentation
# ListVPCAssociationAuthorizationsPaginator usage example
from boto3.session import Session
from types_boto3_route53.paginator import ListVPCAssociationAuthorizationsPaginator
def get_list_vpc_association_authorizations_paginator() -> ListVPCAssociationAuthorizationsPaginator:
    return Session().client("route53").get_paginator("list_vpc_association_authorizations")# ListVPCAssociationAuthorizationsPaginator usage example with type annotations
from boto3.session import Session
from types_boto3_route53.paginator import ListVPCAssociationAuthorizationsPaginator
session = Session()
client = Session().client("route53")  # (1)
paginator: ListVPCAssociationAuthorizationsPaginator = client.get_paginator("list_vpc_association_authorizations")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)- client: Route53Client
- paginator: ListVPCAssociationAuthorizationsPaginator
- item: PageIterator[ListVPCAssociationAuthorizationsResponseTypeDef]
paginate#
Type annotations and code completion for ListVPCAssociationAuthorizationsPaginator.paginate method.
# paginate method definition
def paginate(
    self,
    *,
    HostedZoneId: str,
    MaxResults: str = ...,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> botocore.paginate.PageIterator[ListVPCAssociationAuthorizationsResponseTypeDef]:  # (2)
    ...- See PaginatorConfigTypeDef
- See PageIterator[ListVPCAssociationAuthorizationsResponseTypeDef]
# paginate method usage example with argument unpacking
kwargs: ListVPCAssociationAuthorizationsRequestPaginateTypeDef = {  # (1)
    "HostedZoneId": ...,
}
parent.paginate(**kwargs)