Paginators#
Index > Route53Profiles > Paginators
Auto-generated documentation for Route53Profiles type annotations stubs module types-boto3-route53profiles.
ListProfileAssociationsPaginator#
Type annotations and code completion for boto3.client("route53profiles").get_paginator("list_profile_associations").
 boto3 documentation
# ListProfileAssociationsPaginator usage example
from boto3.session import Session
from types_boto3_route53profiles.paginator import ListProfileAssociationsPaginator
def get_list_profile_associations_paginator() -> ListProfileAssociationsPaginator:
    return Session().client("route53profiles").get_paginator("list_profile_associations")# ListProfileAssociationsPaginator usage example with type annotations
from boto3.session import Session
from types_boto3_route53profiles.paginator import ListProfileAssociationsPaginator
session = Session()
client = Session().client("route53profiles")  # (1)
paginator: ListProfileAssociationsPaginator = client.get_paginator("list_profile_associations")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)- client: Route53ProfilesClient
- paginator: ListProfileAssociationsPaginator
- item: PageIterator[ListProfileAssociationsResponseTypeDef]
paginate#
Type annotations and code completion for ListProfileAssociationsPaginator.paginate method.
# paginate method definition
def paginate(
    self,
    *,
    ProfileId: str = ...,
    ResourceId: str = ...,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> botocore.paginate.PageIterator[ListProfileAssociationsResponseTypeDef]:  # (2)
    ...- See PaginatorConfigTypeDef
- See PageIterator[ListProfileAssociationsResponseTypeDef]
# paginate method usage example with argument unpacking
kwargs: ListProfileAssociationsRequestPaginateTypeDef = {  # (1)
    "ProfileId": ...,
}
parent.paginate(**kwargs)ListProfileResourceAssociationsPaginator#
Type annotations and code completion for boto3.client("route53profiles").get_paginator("list_profile_resource_associations").
 boto3 documentation
# ListProfileResourceAssociationsPaginator usage example
from boto3.session import Session
from types_boto3_route53profiles.paginator import ListProfileResourceAssociationsPaginator
def get_list_profile_resource_associations_paginator() -> ListProfileResourceAssociationsPaginator:
    return Session().client("route53profiles").get_paginator("list_profile_resource_associations")# ListProfileResourceAssociationsPaginator usage example with type annotations
from boto3.session import Session
from types_boto3_route53profiles.paginator import ListProfileResourceAssociationsPaginator
session = Session()
client = Session().client("route53profiles")  # (1)
paginator: ListProfileResourceAssociationsPaginator = client.get_paginator("list_profile_resource_associations")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)- client: Route53ProfilesClient
- paginator: ListProfileResourceAssociationsPaginator
- item: PageIterator[ListProfileResourceAssociationsResponseTypeDef]
paginate#
Type annotations and code completion for ListProfileResourceAssociationsPaginator.paginate method.
# paginate method definition
def paginate(
    self,
    *,
    ProfileId: str,
    ResourceType: str = ...,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> botocore.paginate.PageIterator[ListProfileResourceAssociationsResponseTypeDef]:  # (2)
    ...- See PaginatorConfigTypeDef
- See PageIterator[ListProfileResourceAssociationsResponseTypeDef]
# paginate method usage example with argument unpacking
kwargs: ListProfileResourceAssociationsRequestPaginateTypeDef = {  # (1)
    "ProfileId": ...,
}
parent.paginate(**kwargs)ListProfilesPaginator#
Type annotations and code completion for boto3.client("route53profiles").get_paginator("list_profiles").
 boto3 documentation
# ListProfilesPaginator usage example
from boto3.session import Session
from types_boto3_route53profiles.paginator import ListProfilesPaginator
def get_list_profiles_paginator() -> ListProfilesPaginator:
    return Session().client("route53profiles").get_paginator("list_profiles")# ListProfilesPaginator usage example with type annotations
from boto3.session import Session
from types_boto3_route53profiles.paginator import ListProfilesPaginator
session = Session()
client = Session().client("route53profiles")  # (1)
paginator: ListProfilesPaginator = client.get_paginator("list_profiles")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)- client: Route53ProfilesClient
- paginator: ListProfilesPaginator
- item: PageIterator[ListProfilesResponseTypeDef]
paginate#
Type annotations and code completion for ListProfilesPaginator.paginate method.
# paginate method definition
def paginate(
    self,
    *,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> botocore.paginate.PageIterator[ListProfilesResponseTypeDef]:  # (2)
    ...- See PaginatorConfigTypeDef
- See PageIterator[ListProfilesResponseTypeDef]
# paginate method usage example with argument unpacking
kwargs: ListProfilesRequestPaginateTypeDef = {  # (1)
    "PaginationConfig": ...,
}
parent.paginate(**kwargs)