Skip to content

Paginators#

Index > QuickSight > Paginators

Auto-generated documentation for QuickSight type annotations stubs module mypy-boto3-quicksight.

DescribeFolderPermissionsPaginator#

Type annotations and code completion for boto3.client("quicksight").get_paginator("describe_folder_permissions"). boto3 documentation

# DescribeFolderPermissionsPaginator usage example

from boto3.session import Session

from mypy_boto3_quicksight.paginator import DescribeFolderPermissionsPaginator

def get_describe_folder_permissions_paginator() -> DescribeFolderPermissionsPaginator:
    return Session().client("quicksight").get_paginator("describe_folder_permissions")
# DescribeFolderPermissionsPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_quicksight.paginator import DescribeFolderPermissionsPaginator

session = Session()

client = Session().client("quicksight")  # (1)
paginator: DescribeFolderPermissionsPaginator = client.get_paginator("describe_folder_permissions")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: QuickSightClient
  2. paginator: DescribeFolderPermissionsPaginator
  3. item: DescribeFolderPermissionsResponsePaginatorTypeDef

paginate#

Type annotations and code completion for DescribeFolderPermissionsPaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    AwsAccountId: str,
    FolderId: str,
    Namespace: str = ...,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> _PageIterator[DescribeFolderPermissionsResponsePaginatorTypeDef]:  # (2)
    ...
  1. See PaginatorConfigTypeDef
  2. See DescribeFolderPermissionsResponsePaginatorTypeDef
# paginate method usage example with argument unpacking

kwargs: DescribeFolderPermissionsRequestDescribeFolderPermissionsPaginateTypeDef = {  # (1)
    "AwsAccountId": ...,
    "FolderId": ...,
}

parent.paginate(**kwargs)
  1. See DescribeFolderPermissionsRequestDescribeFolderPermissionsPaginateTypeDef

DescribeFolderResolvedPermissionsPaginator#

Type annotations and code completion for boto3.client("quicksight").get_paginator("describe_folder_resolved_permissions"). boto3 documentation

# DescribeFolderResolvedPermissionsPaginator usage example

from boto3.session import Session

from mypy_boto3_quicksight.paginator import DescribeFolderResolvedPermissionsPaginator

def get_describe_folder_resolved_permissions_paginator() -> DescribeFolderResolvedPermissionsPaginator:
    return Session().client("quicksight").get_paginator("describe_folder_resolved_permissions")
# DescribeFolderResolvedPermissionsPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_quicksight.paginator import DescribeFolderResolvedPermissionsPaginator

session = Session()

client = Session().client("quicksight")  # (1)
paginator: DescribeFolderResolvedPermissionsPaginator = client.get_paginator("describe_folder_resolved_permissions")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: QuickSightClient
  2. paginator: DescribeFolderResolvedPermissionsPaginator
  3. item: DescribeFolderResolvedPermissionsResponsePaginatorTypeDef

paginate#

Type annotations and code completion for DescribeFolderResolvedPermissionsPaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    AwsAccountId: str,
    FolderId: str,
    Namespace: str = ...,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> _PageIterator[DescribeFolderResolvedPermissionsResponsePaginatorTypeDef]:  # (2)
    ...
  1. See PaginatorConfigTypeDef
  2. See DescribeFolderResolvedPermissionsResponsePaginatorTypeDef
# paginate method usage example with argument unpacking

kwargs: DescribeFolderResolvedPermissionsRequestDescribeFolderResolvedPermissionsPaginateTypeDef = {  # (1)
    "AwsAccountId": ...,
    "FolderId": ...,
}

parent.paginate(**kwargs)
  1. See DescribeFolderResolvedPermissionsRequestDescribeFolderResolvedPermissionsPaginateTypeDef

ListAnalysesPaginator#

Type annotations and code completion for boto3.client("quicksight").get_paginator("list_analyses"). boto3 documentation

# ListAnalysesPaginator usage example

from boto3.session import Session

from mypy_boto3_quicksight.paginator import ListAnalysesPaginator

def get_list_analyses_paginator() -> ListAnalysesPaginator:
    return Session().client("quicksight").get_paginator("list_analyses")
# ListAnalysesPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_quicksight.paginator import ListAnalysesPaginator

session = Session()

client = Session().client("quicksight")  # (1)
paginator: ListAnalysesPaginator = client.get_paginator("list_analyses")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: QuickSightClient
  2. paginator: ListAnalysesPaginator
  3. item: ListAnalysesResponseTypeDef

paginate#

Type annotations and code completion for ListAnalysesPaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    AwsAccountId: str,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> _PageIterator[ListAnalysesResponseTypeDef]:  # (2)
    ...
  1. See PaginatorConfigTypeDef
  2. See ListAnalysesResponseTypeDef
# paginate method usage example with argument unpacking

kwargs: ListAnalysesRequestListAnalysesPaginateTypeDef = {  # (1)
    "AwsAccountId": ...,
}

parent.paginate(**kwargs)
  1. See ListAnalysesRequestListAnalysesPaginateTypeDef

ListAssetBundleExportJobsPaginator#

Type annotations and code completion for boto3.client("quicksight").get_paginator("list_asset_bundle_export_jobs"). boto3 documentation

# ListAssetBundleExportJobsPaginator usage example

from boto3.session import Session

from mypy_boto3_quicksight.paginator import ListAssetBundleExportJobsPaginator

def get_list_asset_bundle_export_jobs_paginator() -> ListAssetBundleExportJobsPaginator:
    return Session().client("quicksight").get_paginator("list_asset_bundle_export_jobs")
# ListAssetBundleExportJobsPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_quicksight.paginator import ListAssetBundleExportJobsPaginator

session = Session()

client = Session().client("quicksight")  # (1)
paginator: ListAssetBundleExportJobsPaginator = client.get_paginator("list_asset_bundle_export_jobs")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: QuickSightClient
  2. paginator: ListAssetBundleExportJobsPaginator
  3. item: ListAssetBundleExportJobsResponseTypeDef

paginate#

Type annotations and code completion for ListAssetBundleExportJobsPaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    AwsAccountId: str,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> _PageIterator[ListAssetBundleExportJobsResponseTypeDef]:  # (2)
    ...
  1. See PaginatorConfigTypeDef
  2. See ListAssetBundleExportJobsResponseTypeDef
# paginate method usage example with argument unpacking

kwargs: ListAssetBundleExportJobsRequestListAssetBundleExportJobsPaginateTypeDef = {  # (1)
    "AwsAccountId": ...,
}

parent.paginate(**kwargs)
  1. See ListAssetBundleExportJobsRequestListAssetBundleExportJobsPaginateTypeDef

ListAssetBundleImportJobsPaginator#

Type annotations and code completion for boto3.client("quicksight").get_paginator("list_asset_bundle_import_jobs"). boto3 documentation

# ListAssetBundleImportJobsPaginator usage example

from boto3.session import Session

from mypy_boto3_quicksight.paginator import ListAssetBundleImportJobsPaginator

def get_list_asset_bundle_import_jobs_paginator() -> ListAssetBundleImportJobsPaginator:
    return Session().client("quicksight").get_paginator("list_asset_bundle_import_jobs")
# ListAssetBundleImportJobsPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_quicksight.paginator import ListAssetBundleImportJobsPaginator

session = Session()

client = Session().client("quicksight")  # (1)
paginator: ListAssetBundleImportJobsPaginator = client.get_paginator("list_asset_bundle_import_jobs")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: QuickSightClient
  2. paginator: ListAssetBundleImportJobsPaginator
  3. item: ListAssetBundleImportJobsResponseTypeDef

paginate#

Type annotations and code completion for ListAssetBundleImportJobsPaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    AwsAccountId: str,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> _PageIterator[ListAssetBundleImportJobsResponseTypeDef]:  # (2)
    ...
  1. See PaginatorConfigTypeDef
  2. See ListAssetBundleImportJobsResponseTypeDef
# paginate method usage example with argument unpacking

kwargs: ListAssetBundleImportJobsRequestListAssetBundleImportJobsPaginateTypeDef = {  # (1)
    "AwsAccountId": ...,
}

parent.paginate(**kwargs)
  1. See ListAssetBundleImportJobsRequestListAssetBundleImportJobsPaginateTypeDef

ListDashboardVersionsPaginator#

Type annotations and code completion for boto3.client("quicksight").get_paginator("list_dashboard_versions"). boto3 documentation

# ListDashboardVersionsPaginator usage example

from boto3.session import Session

from mypy_boto3_quicksight.paginator import ListDashboardVersionsPaginator

def get_list_dashboard_versions_paginator() -> ListDashboardVersionsPaginator:
    return Session().client("quicksight").get_paginator("list_dashboard_versions")
# ListDashboardVersionsPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_quicksight.paginator import ListDashboardVersionsPaginator

session = Session()

client = Session().client("quicksight")  # (1)
paginator: ListDashboardVersionsPaginator = client.get_paginator("list_dashboard_versions")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: QuickSightClient
  2. paginator: ListDashboardVersionsPaginator
  3. item: ListDashboardVersionsResponseTypeDef

paginate#

Type annotations and code completion for ListDashboardVersionsPaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    AwsAccountId: str,
    DashboardId: str,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> _PageIterator[ListDashboardVersionsResponseTypeDef]:  # (2)
    ...
  1. See PaginatorConfigTypeDef
  2. See ListDashboardVersionsResponseTypeDef
# paginate method usage example with argument unpacking

kwargs: ListDashboardVersionsRequestListDashboardVersionsPaginateTypeDef = {  # (1)
    "AwsAccountId": ...,
    "DashboardId": ...,
}

parent.paginate(**kwargs)
  1. See ListDashboardVersionsRequestListDashboardVersionsPaginateTypeDef

ListDashboardsPaginator#

Type annotations and code completion for boto3.client("quicksight").get_paginator("list_dashboards"). boto3 documentation

# ListDashboardsPaginator usage example

from boto3.session import Session

from mypy_boto3_quicksight.paginator import ListDashboardsPaginator

def get_list_dashboards_paginator() -> ListDashboardsPaginator:
    return Session().client("quicksight").get_paginator("list_dashboards")
# ListDashboardsPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_quicksight.paginator import ListDashboardsPaginator

session = Session()

client = Session().client("quicksight")  # (1)
paginator: ListDashboardsPaginator = client.get_paginator("list_dashboards")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: QuickSightClient
  2. paginator: ListDashboardsPaginator
  3. item: ListDashboardsResponseTypeDef

paginate#

Type annotations and code completion for ListDashboardsPaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    AwsAccountId: str,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> _PageIterator[ListDashboardsResponseTypeDef]:  # (2)
    ...
  1. See PaginatorConfigTypeDef
  2. See ListDashboardsResponseTypeDef
# paginate method usage example with argument unpacking

kwargs: ListDashboardsRequestListDashboardsPaginateTypeDef = {  # (1)
    "AwsAccountId": ...,
}

parent.paginate(**kwargs)
  1. See ListDashboardsRequestListDashboardsPaginateTypeDef

ListDataSetsPaginator#

Type annotations and code completion for boto3.client("quicksight").get_paginator("list_data_sets"). boto3 documentation

# ListDataSetsPaginator usage example

from boto3.session import Session

from mypy_boto3_quicksight.paginator import ListDataSetsPaginator

def get_list_data_sets_paginator() -> ListDataSetsPaginator:
    return Session().client("quicksight").get_paginator("list_data_sets")
# ListDataSetsPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_quicksight.paginator import ListDataSetsPaginator

session = Session()

client = Session().client("quicksight")  # (1)
paginator: ListDataSetsPaginator = client.get_paginator("list_data_sets")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: QuickSightClient
  2. paginator: ListDataSetsPaginator
  3. item: ListDataSetsResponseTypeDef

paginate#

Type annotations and code completion for ListDataSetsPaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    AwsAccountId: str,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> _PageIterator[ListDataSetsResponseTypeDef]:  # (2)
    ...
  1. See PaginatorConfigTypeDef
  2. See ListDataSetsResponseTypeDef
# paginate method usage example with argument unpacking

kwargs: ListDataSetsRequestListDataSetsPaginateTypeDef = {  # (1)
    "AwsAccountId": ...,
}

parent.paginate(**kwargs)
  1. See ListDataSetsRequestListDataSetsPaginateTypeDef

ListDataSourcesPaginator#

Type annotations and code completion for boto3.client("quicksight").get_paginator("list_data_sources"). boto3 documentation

# ListDataSourcesPaginator usage example

from boto3.session import Session

from mypy_boto3_quicksight.paginator import ListDataSourcesPaginator

def get_list_data_sources_paginator() -> ListDataSourcesPaginator:
    return Session().client("quicksight").get_paginator("list_data_sources")
# ListDataSourcesPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_quicksight.paginator import ListDataSourcesPaginator

session = Session()

client = Session().client("quicksight")  # (1)
paginator: ListDataSourcesPaginator = client.get_paginator("list_data_sources")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: QuickSightClient
  2. paginator: ListDataSourcesPaginator
  3. item: ListDataSourcesResponsePaginatorTypeDef

paginate#

Type annotations and code completion for ListDataSourcesPaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    AwsAccountId: str,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> _PageIterator[ListDataSourcesResponsePaginatorTypeDef]:  # (2)
    ...
  1. See PaginatorConfigTypeDef
  2. See ListDataSourcesResponsePaginatorTypeDef
# paginate method usage example with argument unpacking

kwargs: ListDataSourcesRequestListDataSourcesPaginateTypeDef = {  # (1)
    "AwsAccountId": ...,
}

parent.paginate(**kwargs)
  1. See ListDataSourcesRequestListDataSourcesPaginateTypeDef

ListFolderMembersPaginator#

Type annotations and code completion for boto3.client("quicksight").get_paginator("list_folder_members").