Paginators#
Index > Route53Profiles > Paginators
Auto-generated documentation for Route53Profiles type annotations stubs module mypy-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 mypy_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 mypy_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: ListProfileAssociationsResponseTypeDef
paginate#
Type annotations and code completion for ListProfileAssociationsPaginator.paginate
method.
# paginate method definition
def paginate(
self,
*,
ProfileId: str = ...,
ResourceId: str = ...,
PaginationConfig: PaginatorConfigTypeDef = ..., # (1)
) -> _PageIterator[ListProfileAssociationsResponseTypeDef]: # (2)
...
# paginate method usage example with argument unpacking
kwargs: ListProfileAssociationsRequestListProfileAssociationsPaginateTypeDef = { # (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 mypy_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 mypy_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: ListProfileResourceAssociationsResponseTypeDef
paginate#
Type annotations and code completion for ListProfileResourceAssociationsPaginator.paginate
method.
# paginate method definition
def paginate(
self,
*,
ProfileId: str,
ResourceType: str = ...,
PaginationConfig: PaginatorConfigTypeDef = ..., # (1)
) -> _PageIterator[ListProfileResourceAssociationsResponseTypeDef]: # (2)
...
# paginate method usage example with argument unpacking
kwargs: ListProfileResourceAssociationsRequestListProfileResourceAssociationsPaginateTypeDef = { # (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 mypy_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 mypy_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: ListProfilesResponseTypeDef
paginate#
Type annotations and code completion for ListProfilesPaginator.paginate
method.
# paginate method definition
def paginate(
self,
*,
PaginationConfig: PaginatorConfigTypeDef = ..., # (1)
) -> _PageIterator[ListProfilesResponseTypeDef]: # (2)
...
# paginate method usage example with argument unpacking
kwargs: ListProfilesRequestListProfilesPaginateTypeDef = { # (1)
"PaginationConfig": ...,
}
parent.paginate(**kwargs)