Paginators#
Index > AuroraDSQL > Paginators
Auto-generated documentation for AuroraDSQL type annotations stubs module mypy-boto3-dsql.
ListClustersPaginator#
Type annotations and code completion for boto3.client("dsql").get_paginator("list_clusters")
.
boto3 documentation
# ListClustersPaginator usage example
from boto3.session import Session
from mypy_boto3_dsql.paginator import ListClustersPaginator
def get_list_clusters_paginator() -> ListClustersPaginator:
return Session().client("dsql").get_paginator("list_clusters")
# ListClustersPaginator usage example with type annotations
from boto3.session im