types-boto3-quicksight 1.36.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,954 @@
1
+ """
2
+ Type annotations for quicksight service client paginators.
3
+
4
+ [Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/paginators/)
5
+
6
+ Usage::
7
+
8
+ ```python
9
+ from boto3.session import Session
10
+
11
+ from types_boto3_quicksight.client import QuickSightClient
12
+ from types_boto3_quicksight.paginator import (
13
+ DescribeFolderPermissionsPaginator,
14
+ DescribeFolderResolvedPermissionsPaginator,
15
+ ListAnalysesPaginator,
16
+ ListAssetBundleExportJobsPaginator,
17
+ ListAssetBundleImportJobsPaginator,
18
+ ListBrandsPaginator,
19
+ ListCustomPermissionsPaginator,
20
+ ListDashboardVersionsPaginator,
21
+ ListDashboardsPaginator,
22
+ ListDataSetsPaginator,
23
+ ListDataSourcesPaginator,
24
+ ListFolderMembersPaginator,
25
+ ListFoldersForResourcePaginator,
26
+ ListFoldersPaginator,
27
+ ListGroupMembershipsPaginator,
28
+ ListGroupsPaginator,
29
+ ListIAMPolicyAssignmentsForUserPaginator,
30
+ ListIAMPolicyAssignmentsPaginator,
31
+ ListIngestionsPaginator,
32
+ ListNamespacesPaginator,
33
+ ListRoleMembershipsPaginator,
34
+ ListTemplateAliasesPaginator,
35
+ ListTemplateVersionsPaginator,
36
+ ListTemplatesPaginator,
37
+ ListThemeVersionsPaginator,
38
+ ListThemesPaginator,
39
+ ListUserGroupsPaginator,
40
+ ListUsersPaginator,
41
+ SearchAnalysesPaginator,
42
+ SearchDashboardsPaginator,
43
+ SearchDataSetsPaginator,
44
+ SearchDataSourcesPaginator,
45
+ SearchFoldersPaginator,
46
+ SearchGroupsPaginator,
47
+ SearchTopicsPaginator,
48
+ )
49
+
50
+ session = Session()
51
+ client: QuickSightClient = session.client("quicksight")
52
+
53
+ describe_folder_permissions_paginator: DescribeFolderPermissionsPaginator = client.get_paginator("describe_folder_permissions")
54
+ describe_folder_resolved_permissions_paginator: DescribeFolderResolvedPermissionsPaginator = client.get_paginator("describe_folder_resolved_permissions")
55
+ list_analyses_paginator: ListAnalysesPaginator = client.get_paginator("list_analyses")
56
+ list_asset_bundle_export_jobs_paginator: ListAssetBundleExportJobsPaginator = client.get_paginator("list_asset_bundle_export_jobs")
57
+ list_asset_bundle_import_jobs_paginator: ListAssetBundleImportJobsPaginator = client.get_paginator("list_asset_bundle_import_jobs")
58
+ list_brands_paginator: ListBrandsPaginator = client.get_paginator("list_brands")
59
+ list_custom_permissions_paginator: ListCustomPermissionsPaginator = client.get_paginator("list_custom_permissions")
60
+ list_dashboard_versions_paginator: ListDashboardVersionsPaginator = client.get_paginator("list_dashboard_versions")
61
+ list_dashboards_paginator: ListDashboardsPaginator = client.get_paginator("list_dashboards")
62
+ list_data_sets_paginator: ListDataSetsPaginator = client.get_paginator("list_data_sets")
63
+ list_data_sources_paginator: ListDataSourcesPaginator = client.get_paginator("list_data_sources")
64
+ list_folder_members_paginator: ListFolderMembersPaginator = client.get_paginator("list_folder_members")
65
+ list_folders_for_resource_paginator: ListFoldersForResourcePaginator = client.get_paginator("list_folders_for_resource")
66
+ list_folders_paginator: ListFoldersPaginator = client.get_paginator("list_folders")
67
+ list_group_memberships_paginator: ListGroupMembershipsPaginator = client.get_paginator("list_group_memberships")
68
+ list_groups_paginator: ListGroupsPaginator = client.get_paginator("list_groups")
69
+ list_iam_policy_assignments_for_user_paginator: ListIAMPolicyAssignmentsForUserPaginator = client.get_paginator("list_iam_policy_assignments_for_user")
70
+ list_iam_policy_assignments_paginator: ListIAMPolicyAssignmentsPaginator = client.get_paginator("list_iam_policy_assignments")
71
+ list_ingestions_paginator: ListIngestionsPaginator = client.get_paginator("list_ingestions")
72
+ list_namespaces_paginator: ListNamespacesPaginator = client.get_paginator("list_namespaces")
73
+ list_role_memberships_paginator: ListRoleMembershipsPaginator = client.get_paginator("list_role_memberships")
74
+ list_template_aliases_paginator: ListTemplateAliasesPaginator = client.get_paginator("list_template_aliases")
75
+ list_template_versions_paginator: ListTemplateVersionsPaginator = client.get_paginator("list_template_versions")
76
+ list_templates_paginator: ListTemplatesPaginator = client.get_paginator("list_templates")
77
+ list_theme_versions_paginator: ListThemeVersionsPaginator = client.get_paginator("list_theme_versions")
78
+ list_themes_paginator: ListThemesPaginator = client.get_paginator("list_themes")
79
+ list_user_groups_paginator: ListUserGroupsPaginator = client.get_paginator("list_user_groups")
80
+ list_users_paginator: ListUsersPaginator = client.get_paginator("list_users")
81
+ search_analyses_paginator: SearchAnalysesPaginator = client.get_paginator("search_analyses")
82
+ search_dashboards_paginator: SearchDashboardsPaginator = client.get_paginator("search_dashboards")
83
+ search_data_sets_paginator: SearchDataSetsPaginator = client.get_paginator("search_data_sets")
84
+ search_data_sources_paginator: SearchDataSourcesPaginator = client.get_paginator("search_data_sources")
85
+ search_folders_paginator: SearchFoldersPaginator = client.get_paginator("search_folders")
86
+ search_groups_paginator: SearchGroupsPaginator = client.get_paginator("search_groups")
87
+ search_topics_paginator: SearchTopicsPaginator = client.get_paginator("search_topics")
88
+ ```
89
+
90
+ Copyright 2025 Vlad Emelianov
91
+ """
92
+
93
+ from __future__ import annotations
94
+
95
+ import sys
96
+ from typing import TYPE_CHECKING
97
+
98
+ from botocore.paginate import PageIterator, Paginator
99
+
100
+ from .type_defs import (
101
+ DescribeFolderPermissionsRequestPaginateTypeDef,
102
+ DescribeFolderPermissionsResponseTypeDef,
103
+ DescribeFolderResolvedPermissionsRequestPaginateTypeDef,
104
+ DescribeFolderResolvedPermissionsResponseTypeDef,
105
+ ListAnalysesRequestPaginateTypeDef,
106
+ ListAnalysesResponseTypeDef,
107
+ ListAssetBundleExportJobsRequestPaginateTypeDef,
108
+ ListAssetBundleExportJobsResponseTypeDef,
109
+ ListAssetBundleImportJobsRequestPaginateTypeDef,
110
+ ListAssetBundleImportJobsResponseTypeDef,
111
+ ListBrandsRequestPaginateTypeDef,
112
+ ListBrandsResponseTypeDef,
113
+ ListCustomPermissionsRequestPaginateTypeDef,
114
+ ListCustomPermissionsResponseTypeDef,
115
+ ListDashboardsRequestPaginateTypeDef,
116
+ ListDashboardsResponseTypeDef,
117
+ ListDashboardVersionsRequestPaginateTypeDef,
118
+ ListDashboardVersionsResponseTypeDef,
119
+ ListDataSetsRequestPaginateTypeDef,
120
+ ListDataSetsResponseTypeDef,
121
+ ListDataSourcesRequestPaginateTypeDef,
122
+ ListDataSourcesResponseTypeDef,
123
+ ListFolderMembersRequestPaginateTypeDef,
124
+ ListFolderMembersResponseTypeDef,
125
+ ListFoldersForResourceRequestPaginateTypeDef,
126
+ ListFoldersForResourceResponseTypeDef,
127
+ ListFoldersRequestPaginateTypeDef,
128
+ ListFoldersResponseTypeDef,
129
+ ListGroupMembershipsRequestPaginateTypeDef,
130
+ ListGroupMembershipsResponseTypeDef,
131
+ ListGroupsRequestPaginateTypeDef,
132
+ ListGroupsResponseTypeDef,
133
+ ListIAMPolicyAssignmentsForUserRequestPaginateTypeDef,
134
+ ListIAMPolicyAssignmentsForUserResponseTypeDef,
135
+ ListIAMPolicyAssignmentsRequestPaginateTypeDef,
136
+ ListIAMPolicyAssignmentsResponseTypeDef,
137
+ ListIngestionsRequestPaginateTypeDef,
138
+ ListIngestionsResponseTypeDef,
139
+ ListNamespacesRequestPaginateTypeDef,
140
+ ListNamespacesResponseTypeDef,
141
+ ListRoleMembershipsRequestPaginateTypeDef,
142
+ ListRoleMembershipsResponseTypeDef,
143
+ ListTemplateAliasesRequestPaginateTypeDef,
144
+ ListTemplateAliasesResponseTypeDef,
145
+ ListTemplatesRequestPaginateTypeDef,
146
+ ListTemplatesResponseTypeDef,
147
+ ListTemplateVersionsRequestPaginateTypeDef,
148
+ ListTemplateVersionsResponseTypeDef,
149
+ ListThemesRequestPaginateTypeDef,
150
+ ListThemesResponseTypeDef,
151
+ ListThemeVersionsRequestPaginateTypeDef,
152
+ ListThemeVersionsResponseTypeDef,
153
+ ListUserGroupsRequestPaginateTypeDef,
154
+ ListUserGroupsResponseTypeDef,
155
+ ListUsersRequestPaginateTypeDef,
156
+ ListUsersResponseTypeDef,
157
+ SearchAnalysesRequestPaginateTypeDef,
158
+ SearchAnalysesResponseTypeDef,
159
+ SearchDashboardsRequestPaginateTypeDef,
160
+ SearchDashboardsResponseTypeDef,
161
+ SearchDataSetsRequestPaginateTypeDef,
162
+ SearchDataSetsResponseTypeDef,
163
+ SearchDataSourcesRequestPaginateTypeDef,
164
+ SearchDataSourcesResponseTypeDef,
165
+ SearchFoldersRequestPaginateTypeDef,
166
+ SearchFoldersResponseTypeDef,
167
+ SearchGroupsRequestPaginateTypeDef,
168
+ SearchGroupsResponseTypeDef,
169
+ SearchTopicsRequestPaginateTypeDef,
170
+ SearchTopicsResponseTypeDef,
171
+ )
172
+
173
+ if sys.version_info >= (3, 12):
174
+ from typing import Unpack
175
+ else:
176
+ from typing_extensions import Unpack
177
+
178
+
179
+ __all__ = (
180
+ "DescribeFolderPermissionsPaginator",
181
+ "DescribeFolderResolvedPermissionsPaginator",
182
+ "ListAnalysesPaginator",
183
+ "ListAssetBundleExportJobsPaginator",
184
+ "ListAssetBundleImportJobsPaginator",
185
+ "ListBrandsPaginator",
186
+ "ListCustomPermissionsPaginator",
187
+ "ListDashboardVersionsPaginator",
188
+ "ListDashboardsPaginator",
189
+ "ListDataSetsPaginator",
190
+ "ListDataSourcesPaginator",
191
+ "ListFolderMembersPaginator",
192
+ "ListFoldersForResourcePaginator",
193
+ "ListFoldersPaginator",
194
+ "ListGroupMembershipsPaginator",
195
+ "ListGroupsPaginator",
196
+ "ListIAMPolicyAssignmentsForUserPaginator",
197
+ "ListIAMPolicyAssignmentsPaginator",
198
+ "ListIngestionsPaginator",
199
+ "ListNamespacesPaginator",
200
+ "ListRoleMembershipsPaginator",
201
+ "ListTemplateAliasesPaginator",
202
+ "ListTemplateVersionsPaginator",
203
+ "ListTemplatesPaginator",
204
+ "ListThemeVersionsPaginator",
205
+ "ListThemesPaginator",
206
+ "ListUserGroupsPaginator",
207
+ "ListUsersPaginator",
208
+ "SearchAnalysesPaginator",
209
+ "SearchDashboardsPaginator",
210
+ "SearchDataSetsPaginator",
211
+ "SearchDataSourcesPaginator",
212
+ "SearchFoldersPaginator",
213
+ "SearchGroupsPaginator",
214
+ "SearchTopicsPaginator",
215
+ )
216
+
217
+
218
+ if TYPE_CHECKING:
219
+ _DescribeFolderPermissionsPaginatorBase = Paginator[DescribeFolderPermissionsResponseTypeDef]
220
+ else:
221
+ _DescribeFolderPermissionsPaginatorBase = Paginator # type: ignore[assignment]
222
+
223
+
224
+ class DescribeFolderPermissionsPaginator(_DescribeFolderPermissionsPaginatorBase):
225
+ """
226
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/paginator/DescribeFolderPermissions.html#QuickSight.Paginator.DescribeFolderPermissions)
227
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/paginators/#describefolderpermissionspaginator)
228
+ """
229
+
230
+ def paginate( # type: ignore[override]
231
+ self, **kwargs: Unpack[DescribeFolderPermissionsRequestPaginateTypeDef]
232
+ ) -> PageIterator[DescribeFolderPermissionsResponseTypeDef]:
233
+ """
234
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/paginator/DescribeFolderPermissions.html#QuickSight.Paginator.DescribeFolderPermissions.paginate)
235
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/paginators/#describefolderpermissionspaginator)
236
+ """
237
+
238
+
239
+ if TYPE_CHECKING:
240
+ _DescribeFolderResolvedPermissionsPaginatorBase = Paginator[
241
+ DescribeFolderResolvedPermissionsResponseTypeDef
242
+ ]
243
+ else:
244
+ _DescribeFolderResolvedPermissionsPaginatorBase = Paginator # type: ignore[assignment]
245
+
246
+
247
+ class DescribeFolderResolvedPermissionsPaginator(_DescribeFolderResolvedPermissionsPaginatorBase):
248
+ """
249
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/paginator/DescribeFolderResolvedPermissions.html#QuickSight.Paginator.DescribeFolderResolvedPermissions)
250
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/paginators/#describefolderresolvedpermissionspaginator)
251
+ """
252
+
253
+ def paginate( # type: ignore[override]
254
+ self, **kwargs: Unpack[DescribeFolderResolvedPermissionsRequestPaginateTypeDef]
255
+ ) -> PageIterator[DescribeFolderResolvedPermissionsResponseTypeDef]:
256
+ """
257
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/paginator/DescribeFolderResolvedPermissions.html#QuickSight.Paginator.DescribeFolderResolvedPermissions.paginate)
258
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/paginators/#describefolderresolvedpermissionspaginator)
259
+ """
260
+
261
+
262
+ if TYPE_CHECKING:
263
+ _ListAnalysesPaginatorBase = Paginator[ListAnalysesResponseTypeDef]
264
+ else:
265
+ _ListAnalysesPaginatorBase = Paginator # type: ignore[assignment]
266
+
267
+
268
+ class ListAnalysesPaginator(_ListAnalysesPaginatorBase):
269
+ """
270
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/paginator/ListAnalyses.html#QuickSight.Paginator.ListAnalyses)
271
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/paginators/#listanalysespaginator)
272
+ """
273
+
274
+ def paginate( # type: ignore[override]
275
+ self, **kwargs: Unpack[ListAnalysesRequestPaginateTypeDef]
276
+ ) -> PageIterator[ListAnalysesResponseTypeDef]:
277
+ """
278
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/paginator/ListAnalyses.html#QuickSight.Paginator.ListAnalyses.paginate)
279
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/paginators/#listanalysespaginator)
280
+ """
281
+
282
+
283
+ if TYPE_CHECKING:
284
+ _ListAssetBundleExportJobsPaginatorBase = Paginator[ListAssetBundleExportJobsResponseTypeDef]
285
+ else:
286
+ _ListAssetBundleExportJobsPaginatorBase = Paginator # type: ignore[assignment]
287
+
288
+
289
+ class ListAssetBundleExportJobsPaginator(_ListAssetBundleExportJobsPaginatorBase):
290
+ """
291
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/paginator/ListAssetBundleExportJobs.html#QuickSight.Paginator.ListAssetBundleExportJobs)
292
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/paginators/#listassetbundleexportjobspaginator)
293
+ """
294
+
295
+ def paginate( # type: ignore[override]
296
+ self, **kwargs: Unpack[ListAssetBundleExportJobsRequestPaginateTypeDef]
297
+ ) -> PageIterator[ListAssetBundleExportJobsResponseTypeDef]:
298
+ """
299
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/paginator/ListAssetBundleExportJobs.html#QuickSight.Paginator.ListAssetBundleExportJobs.paginate)
300
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/paginators/#listassetbundleexportjobspaginator)
301
+ """
302
+
303
+
304
+ if TYPE_CHECKING:
305
+ _ListAssetBundleImportJobsPaginatorBase = Paginator[ListAssetBundleImportJobsResponseTypeDef]
306
+ else:
307
+ _ListAssetBundleImportJobsPaginatorBase = Paginator # type: ignore[assignment]
308
+
309
+
310
+ class ListAssetBundleImportJobsPaginator(_ListAssetBundleImportJobsPaginatorBase):
311
+ """
312
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/paginator/ListAssetBundleImportJobs.html#QuickSight.Paginator.ListAssetBundleImportJobs)
313
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/paginators/#listassetbundleimportjobspaginator)
314
+ """
315
+
316
+ def paginate( # type: ignore[override]
317
+ self, **kwargs: Unpack[ListAssetBundleImportJobsRequestPaginateTypeDef]
318
+ ) -> PageIterator[ListAssetBundleImportJobsResponseTypeDef]:
319
+ """
320
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/paginator/ListAssetBundleImportJobs.html#QuickSight.Paginator.ListAssetBundleImportJobs.paginate)
321
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/paginators/#listassetbundleimportjobspaginator)
322
+ """
323
+
324
+
325
+ if TYPE_CHECKING:
326
+ _ListBrandsPaginatorBase = Paginator[ListBrandsResponseTypeDef]
327
+ else:
328
+ _ListBrandsPaginatorBase = Paginator # type: ignore[assignment]
329
+
330
+
331
+ class ListBrandsPaginator(_ListBrandsPaginatorBase):
332
+ """
333
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/paginator/ListBrands.html#QuickSight.Paginator.ListBrands)
334
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/paginators/#listbrandspaginator)
335
+ """
336
+
337
+ def paginate( # type: ignore[override]
338
+ self, **kwargs: Unpack[ListBrandsRequestPaginateTypeDef]
339
+ ) -> PageIterator[ListBrandsResponseTypeDef]:
340
+ """
341
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/paginator/ListBrands.html#QuickSight.Paginator.ListBrands.paginate)
342
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/paginators/#listbrandspaginator)
343
+ """
344
+
345
+
346
+ if TYPE_CHECKING:
347
+ _ListCustomPermissionsPaginatorBase = Paginator[ListCustomPermissionsResponseTypeDef]
348
+ else:
349
+ _ListCustomPermissionsPaginatorBase = Paginator # type: ignore[assignment]
350
+
351
+
352
+ class ListCustomPermissionsPaginator(_ListCustomPermissionsPaginatorBase):
353
+ """
354
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/paginator/ListCustomPermissions.html#QuickSight.Paginator.ListCustomPermissions)
355
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/paginators/#listcustompermissionspaginator)
356
+ """
357
+
358
+ def paginate( # type: ignore[override]
359
+ self, **kwargs: Unpack[ListCustomPermissionsRequestPaginateTypeDef]
360
+ ) -> PageIterator[ListCustomPermissionsResponseTypeDef]:
361
+ """
362
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/paginator/ListCustomPermissions.html#QuickSight.Paginator.ListCustomPermissions.paginate)
363
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/paginators/#listcustompermissionspaginator)
364
+ """
365
+
366
+
367
+ if TYPE_CHECKING:
368
+ _ListDashboardVersionsPaginatorBase = Paginator[ListDashboardVersionsResponseTypeDef]
369
+ else:
370
+ _ListDashboardVersionsPaginatorBase = Paginator # type: ignore[assignment]
371
+
372
+
373
+ class ListDashboardVersionsPaginator(_ListDashboardVersionsPaginatorBase):
374
+ """
375
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/paginator/ListDashboardVersions.html#QuickSight.Paginator.ListDashboardVersions)
376
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/paginators/#listdashboardversionspaginator)
377
+ """
378
+
379
+ def paginate( # type: ignore[override]
380
+ self, **kwargs: Unpack[ListDashboardVersionsRequestPaginateTypeDef]
381
+ ) -> PageIterator[ListDashboardVersionsResponseTypeDef]:
382
+ """
383
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/paginator/ListDashboardVersions.html#QuickSight.Paginator.ListDashboardVersions.paginate)
384
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/paginators/#listdashboardversionspaginator)
385
+ """
386
+
387
+
388
+ if TYPE_CHECKING:
389
+ _ListDashboardsPaginatorBase = Paginator[ListDashboardsResponseTypeDef]
390
+ else:
391
+ _ListDashboardsPaginatorBase = Paginator # type: ignore[assignment]
392
+
393
+
394
+ class ListDashboardsPaginator(_ListDashboardsPaginatorBase):
395
+ """
396
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/paginator/ListDashboards.html#QuickSight.Paginator.ListDashboards)
397
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/paginators/#listdashboardspaginator)
398
+ """
399
+
400
+ def paginate( # type: ignore[override]
401
+ self, **kwargs: Unpack[ListDashboardsRequestPaginateTypeDef]
402
+ ) -> PageIterator[ListDashboardsResponseTypeDef]:
403
+ """
404
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/paginator/ListDashboards.html#QuickSight.Paginator.ListDashboards.paginate)
405
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/paginators/#listdashboardspaginator)
406
+ """
407
+
408
+
409
+ if TYPE_CHECKING:
410
+ _ListDataSetsPaginatorBase = Paginator[ListDataSetsResponseTypeDef]
411
+ else:
412
+ _ListDataSetsPaginatorBase = Paginator # type: ignore[assignment]
413
+
414
+
415
+ class ListDataSetsPaginator(_ListDataSetsPaginatorBase):
416
+ """
417
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/paginator/ListDataSets.html#QuickSight.Paginator.ListDataSets)
418
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/paginators/#listdatasetspaginator)
419
+ """
420
+
421
+ def paginate( # type: ignore[override]
422
+ self, **kwargs: Unpack[ListDataSetsRequestPaginateTypeDef]
423
+ ) -> PageIterator[ListDataSetsResponseTypeDef]:
424
+ """
425
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/paginator/ListDataSets.html#QuickSight.Paginator.ListDataSets.paginate)
426
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/paginators/#listdatasetspaginator)
427
+ """
428
+
429
+
430
+ if TYPE_CHECKING:
431
+ _ListDataSourcesPaginatorBase = Paginator[ListDataSourcesResponseTypeDef]
432
+ else:
433
+ _ListDataSourcesPaginatorBase = Paginator # type: ignore[assignment]
434
+
435
+
436
+ class ListDataSourcesPaginator(_ListDataSourcesPaginatorBase):
437
+ """
438
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/paginator/ListDataSources.html#QuickSight.Paginator.ListDataSources)
439
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/paginators/#listdatasourcespaginator)
440
+ """
441
+
442
+ def paginate( # type: ignore[override]
443
+ self, **kwargs: Unpack[ListDataSourcesRequestPaginateTypeDef]
444
+ ) -> PageIterator[ListDataSourcesResponseTypeDef]:
445
+ """
446
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/paginator/ListDataSources.html#QuickSight.Paginator.ListDataSources.paginate)
447
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/paginators/#listdatasourcespaginator)
448
+ """
449
+
450
+
451
+ if TYPE_CHECKING:
452
+ _ListFolderMembersPaginatorBase = Paginator[ListFolderMembersResponseTypeDef]
453
+ else:
454
+ _ListFolderMembersPaginatorBase = Paginator # type: ignore[assignment]
455
+
456
+
457
+ class ListFolderMembersPaginator(_ListFolderMembersPaginatorBase):
458
+ """
459
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/paginator/ListFolderMembers.html#QuickSight.Paginator.ListFolderMembers)
460
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/paginators/#listfoldermemberspaginator)
461
+ """
462
+
463
+ def paginate( # type: ignore[override]
464
+ self, **kwargs: Unpack[ListFolderMembersRequestPaginateTypeDef]
465
+ ) -> PageIterator[ListFolderMembersResponseTypeDef]:
466
+ """
467
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/paginator/ListFolderMembers.html#QuickSight.Paginator.ListFolderMembers.paginate)
468
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/paginators/#listfoldermemberspaginator)
469
+ """
470
+
471
+
472
+ if TYPE_CHECKING:
473
+ _ListFoldersForResourcePaginatorBase = Paginator[ListFoldersForResourceResponseTypeDef]
474
+ else:
475
+ _ListFoldersForResourcePaginatorBase = Paginator # type: ignore[assignment]
476
+
477
+
478
+ class ListFoldersForResourcePaginator(_ListFoldersForResourcePaginatorBase):
479
+ """
480
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/paginator/ListFoldersForResource.html#QuickSight.Paginator.ListFoldersForResource)
481
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/paginators/#listfoldersforresourcepaginator)
482
+ """
483
+
484
+ def paginate( # type: ignore[override]
485
+ self, **kwargs: Unpack[ListFoldersForResourceRequestPaginateTypeDef]
486
+ ) -> PageIterator[ListFoldersForResourceResponseTypeDef]:
487
+ """
488
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/paginator/ListFoldersForResource.html#QuickSight.Paginator.ListFoldersForResource.paginate)
489
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/paginators/#listfoldersforresourcepaginator)
490
+ """
491
+
492
+
493
+ if TYPE_CHECKING:
494
+ _ListFoldersPaginatorBase = Paginator[ListFoldersResponseTypeDef]
495
+ else:
496
+ _ListFoldersPaginatorBase = Paginator # type: ignore[assignment]
497
+
498
+
499
+ class ListFoldersPaginator(_ListFoldersPaginatorBase):
500
+ """
501
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/paginator/ListFolders.html#QuickSight.Paginator.ListFolders)
502
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/paginators/#listfolderspaginator)
503
+ """
504
+
505
+ def paginate( # type: ignore[override]
506
+ self, **kwargs: Unpack[ListFoldersRequestPaginateTypeDef]
507
+ ) -> PageIterator[ListFoldersResponseTypeDef]:
508
+ """
509
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/paginator/ListFolders.html#QuickSight.Paginator.ListFolders.paginate)
510
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/paginators/#listfolderspaginator)
511
+ """
512
+
513
+
514
+ if TYPE_CHECKING:
515
+ _ListGroupMembershipsPaginatorBase = Paginator[ListGroupMembershipsResponseTypeDef]
516
+ else:
517
+ _ListGroupMembershipsPaginatorBase = Paginator # type: ignore[assignment]
518
+
519
+
520
+ class ListGroupMembershipsPaginator(_ListGroupMembershipsPaginatorBase):
521
+ """
522
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/paginator/ListGroupMemberships.html#QuickSight.Paginator.ListGroupMemberships)
523
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/paginators/#listgroupmembershipspaginator)
524
+ """
525
+
526
+ def paginate( # type: ignore[override]
527
+ self, **kwargs: Unpack[ListGroupMembershipsRequestPaginateTypeDef]
528
+ ) -> PageIterator[ListGroupMembershipsResponseTypeDef]:
529
+ """
530
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/paginator/ListGroupMemberships.html#QuickSight.Paginator.ListGroupMemberships.paginate)
531
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/paginators/#listgroupmembershipspaginator)
532
+ """
533
+
534
+
535
+ if TYPE_CHECKING:
536
+ _ListGroupsPaginatorBase = Paginator[ListGroupsResponseTypeDef]
537
+ else:
538
+ _ListGroupsPaginatorBase = Paginator # type: ignore[assignment]
539
+
540
+
541
+ class ListGroupsPaginator(_ListGroupsPaginatorBase):
542
+ """
543
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/paginator/ListGroups.html#QuickSight.Paginator.ListGroups)
544
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/paginators/#listgroupspaginator)
545
+ """
546
+
547
+ def paginate( # type: ignore[override]
548
+ self, **kwargs: Unpack[ListGroupsRequestPaginateTypeDef]
549
+ ) -> PageIterator[ListGroupsResponseTypeDef]:
550
+ """
551
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/paginator/ListGroups.html#QuickSight.Paginator.ListGroups.paginate)
552
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/paginators/#listgroupspaginator)
553
+ """
554
+
555
+
556
+ if TYPE_CHECKING:
557
+ _ListIAMPolicyAssignmentsForUserPaginatorBase = Paginator[
558
+ ListIAMPolicyAssignmentsForUserResponseTypeDef
559
+ ]
560
+ else:
561
+ _ListIAMPolicyAssignmentsForUserPaginatorBase = Paginator # type: ignore[assignment]
562
+
563
+
564
+ class ListIAMPolicyAssignmentsForUserPaginator(_ListIAMPolicyAssignmentsForUserPaginatorBase):
565
+ """
566
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/paginator/ListIAMPolicyAssignmentsForUser.html#QuickSight.Paginator.ListIAMPolicyAssignmentsForUser)
567
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/paginators/#listiampolicyassignmentsforuserpaginator)
568
+ """
569
+
570
+ def paginate( # type: ignore[override]
571
+ self, **kwargs: Unpack[ListIAMPolicyAssignmentsForUserRequestPaginateTypeDef]
572
+ ) -> PageIterator[ListIAMPolicyAssignmentsForUserResponseTypeDef]:
573
+ """
574
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/paginator/ListIAMPolicyAssignmentsForUser.html#QuickSight.Paginator.ListIAMPolicyAssignmentsForUser.paginate)
575
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/paginators/#listiampolicyassignmentsforuserpaginator)
576
+ """
577
+
578
+
579
+ if TYPE_CHECKING:
580
+ _ListIAMPolicyAssignmentsPaginatorBase = Paginator[ListIAMPolicyAssignmentsResponseTypeDef]
581
+ else:
582
+ _ListIAMPolicyAssignmentsPaginatorBase = Paginator # type: ignore[assignment]
583
+
584
+
585
+ class ListIAMPolicyAssignmentsPaginator(_ListIAMPolicyAssignmentsPaginatorBase):
586
+ """
587
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/paginator/ListIAMPolicyAssignments.html#QuickSight.Paginator.ListIAMPolicyAssignments)
588
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/paginators/#listiampolicyassignmentspaginator)
589
+ """
590
+
591
+ def paginate( # type: ignore[override]
592
+ self, **kwargs: Unpack[ListIAMPolicyAssignmentsRequestPaginateTypeDef]
593
+ ) -> PageIterator[ListIAMPolicyAssignmentsResponseTypeDef]:
594
+ """
595
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/paginator/ListIAMPolicyAssignments.html#QuickSight.Paginator.ListIAMPolicyAssignments.paginate)
596
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/paginators/#listiampolicyassignmentspaginator)
597
+ """
598
+
599
+
600
+ if TYPE_CHECKING:
601
+ _ListIngestionsPaginatorBase = Paginator[ListIngestionsResponseTypeDef]
602
+ else:
603
+ _ListIngestionsPaginatorBase = Paginator # type: ignore[assignment]
604
+
605
+
606
+ class ListIngestionsPaginator(_ListIngestionsPaginatorBase):
607
+ """
608
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/paginator/ListIngestions.html#QuickSight.Paginator.ListIngestions)
609
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/paginators/#listingestionspaginator)
610
+ """
611
+
612
+ def paginate( # type: ignore[override]
613
+ self, **kwargs: Unpack[ListIngestionsRequestPaginateTypeDef]
614
+ ) -> PageIterator[ListIngestionsResponseTypeDef]:
615
+ """
616
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/paginator/ListIngestions.html#QuickSight.Paginator.ListIngestions.paginate)
617
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/paginators/#listingestionspaginator)
618
+ """
619
+
620
+
621
+ if TYPE_CHECKING:
622
+ _ListNamespacesPaginatorBase = Paginator[ListNamespacesResponseTypeDef]
623
+ else:
624
+ _ListNamespacesPaginatorBase = Paginator # type: ignore[assignment]
625
+
626
+
627
+ class ListNamespacesPaginator(_ListNamespacesPaginatorBase):
628
+ """
629
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/paginator/ListNamespaces.html#QuickSight.Paginator.ListNamespaces)
630
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/paginators/#listnamespacespaginator)
631
+ """
632
+
633
+ def paginate( # type: ignore[override]
634
+ self, **kwargs: Unpack[ListNamespacesRequestPaginateTypeDef]
635
+ ) -> PageIterator[ListNamespacesResponseTypeDef]:
636
+ """
637
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/paginator/ListNamespaces.html#QuickSight.Paginator.ListNamespaces.paginate)
638
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/paginators/#listnamespacespaginator)
639
+ """
640
+
641
+
642
+ if TYPE_CHECKING:
643
+ _ListRoleMembershipsPaginatorBase = Paginator[ListRoleMembershipsResponseTypeDef]
644
+ else:
645
+ _ListRoleMembershipsPaginatorBase = Paginator # type: ignore[assignment]
646
+
647
+
648
+ class ListRoleMembershipsPaginator(_ListRoleMembershipsPaginatorBase):
649
+ """
650
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/paginator/ListRoleMemberships.html#QuickSight.Paginator.ListRoleMemberships)
651
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/paginators/#listrolemembershipspaginator)
652
+ """
653
+
654
+ def paginate( # type: ignore[override]
655
+ self, **kwargs: Unpack[ListRoleMembershipsRequestPaginateTypeDef]
656
+ ) -> PageIterator[ListRoleMembershipsResponseTypeDef]:
657
+ """
658
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/paginator/ListRoleMemberships.html#QuickSight.Paginator.ListRoleMemberships.paginate)
659
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/paginators/#listrolemembershipspaginator)
660
+ """
661
+
662
+
663
+ if TYPE_CHECKING:
664
+ _ListTemplateAliasesPaginatorBase = Paginator[ListTemplateAliasesResponseTypeDef]
665
+ else:
666
+ _ListTemplateAliasesPaginatorBase = Paginator # type: ignore[assignment]
667
+
668
+
669
+ class ListTemplateAliasesPaginator(_ListTemplateAliasesPaginatorBase):
670
+ """
671
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/paginator/ListTemplateAliases.html#QuickSight.Paginator.ListTemplateAliases)
672
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/paginators/#listtemplatealiasespaginator)
673
+ """
674
+
675
+ def paginate( # type: ignore[override]
676
+ self, **kwargs: Unpack[ListTemplateAliasesRequestPaginateTypeDef]
677
+ ) -> PageIterator[ListTemplateAliasesResponseTypeDef]:
678
+ """
679
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/paginator/ListTemplateAliases.html#QuickSight.Paginator.ListTemplateAliases.paginate)
680
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/paginators/#listtemplatealiasespaginator)
681
+ """
682
+
683
+
684
+ if TYPE_CHECKING:
685
+ _ListTemplateVersionsPaginatorBase = Paginator[ListTemplateVersionsResponseTypeDef]
686
+ else:
687
+ _ListTemplateVersionsPaginatorBase = Paginator # type: ignore[assignment]
688
+
689
+
690
+ class ListTemplateVersionsPaginator(_ListTemplateVersionsPaginatorBase):
691
+ """
692
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/paginator/ListTemplateVersions.html#QuickSight.Paginator.ListTemplateVersions)
693
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/paginators/#listtemplateversionspaginator)
694
+ """
695
+
696
+ def paginate( # type: ignore[override]
697
+ self, **kwargs: Unpack[ListTemplateVersionsRequestPaginateTypeDef]
698
+ ) -> PageIterator[ListTemplateVersionsResponseTypeDef]:
699
+ """
700
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/paginator/ListTemplateVersions.html#QuickSight.Paginator.ListTemplateVersions.paginate)
701
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/paginators/#listtemplateversionspaginator)
702
+ """
703
+
704
+
705
+ if TYPE_CHECKING:
706
+ _ListTemplatesPaginatorBase = Paginator[ListTemplatesResponseTypeDef]
707
+ else:
708
+ _ListTemplatesPaginatorBase = Paginator # type: ignore[assignment]
709
+
710
+
711
+ class ListTemplatesPaginator(_ListTemplatesPaginatorBase):
712
+ """
713
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/paginator/ListTemplates.html#QuickSight.Paginator.ListTemplates)
714
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/paginators/#listtemplatespaginator)
715
+ """
716
+
717
+ def paginate( # type: ignore[override]
718
+ self, **kwargs: Unpack[ListTemplatesRequestPaginateTypeDef]
719
+ ) -> PageIterator[ListTemplatesResponseTypeDef]:
720
+ """
721
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/paginator/ListTemplates.html#QuickSight.Paginator.ListTemplates.paginate)
722
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/paginators/#listtemplatespaginator)
723
+ """
724
+
725
+
726
+ if TYPE_CHECKING:
727
+ _ListThemeVersionsPaginatorBase = Paginator[ListThemeVersionsResponseTypeDef]
728
+ else:
729
+ _ListThemeVersionsPaginatorBase = Paginator # type: ignore[assignment]
730
+
731
+
732
+ class ListThemeVersionsPaginator(_ListThemeVersionsPaginatorBase):
733
+ """
734
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/paginator/ListThemeVersions.html#QuickSight.Paginator.ListThemeVersions)
735
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/paginators/#listthemeversionspaginator)
736
+ """
737
+
738
+ def paginate( # type: ignore[override]
739
+ self, **kwargs: Unpack[ListThemeVersionsRequestPaginateTypeDef]
740
+ ) -> PageIterator[ListThemeVersionsResponseTypeDef]:
741
+ """
742
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/paginator/ListThemeVersions.html#QuickSight.Paginator.ListThemeVersions.paginate)
743
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/paginators/#listthemeversionspaginator)
744
+ """
745
+
746
+
747
+ if TYPE_CHECKING:
748
+ _ListThemesPaginatorBase = Paginator[ListThemesResponseTypeDef]
749
+ else:
750
+ _ListThemesPaginatorBase = Paginator # type: ignore[assignment]
751
+
752
+
753
+ class ListThemesPaginator(_ListThemesPaginatorBase):
754
+ """
755
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/paginator/ListThemes.html#QuickSight.Paginator.ListThemes)
756
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/paginators/#listthemespaginator)
757
+ """
758
+
759
+ def paginate( # type: ignore[override]
760
+ self, **kwargs: Unpack[ListThemesRequestPaginateTypeDef]
761
+ ) -> PageIterator[ListThemesResponseTypeDef]:
762
+ """
763
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/paginator/ListThemes.html#QuickSight.Paginator.ListThemes.paginate)
764
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/paginators/#listthemespaginator)
765
+ """
766
+
767
+
768
+ if TYPE_CHECKING:
769
+ _ListUserGroupsPaginatorBase = Paginator[ListUserGroupsResponseTypeDef]
770
+ else:
771
+ _ListUserGroupsPaginatorBase = Paginator # type: ignore[assignment]
772
+
773
+
774
+ class ListUserGroupsPaginator(_ListUserGroupsPaginatorBase):
775
+ """
776
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/paginator/ListUserGroups.html#QuickSight.Paginator.ListUserGroups)
777
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/paginators/#listusergroupspaginator)
778
+ """
779
+
780
+ def paginate( # type: ignore[override]
781
+ self, **kwargs: Unpack[ListUserGroupsRequestPaginateTypeDef]
782
+ ) -> PageIterator[ListUserGroupsResponseTypeDef]:
783
+ """
784
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/paginator/ListUserGroups.html#QuickSight.Paginator.ListUserGroups.paginate)
785
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/paginators/#listusergroupspaginator)
786
+ """
787
+
788
+
789
+ if TYPE_CHECKING:
790
+ _ListUsersPaginatorBase = Paginator[ListUsersResponseTypeDef]
791
+ else:
792
+ _ListUsersPaginatorBase = Paginator # type: ignore[assignment]
793
+
794
+
795
+ class ListUsersPaginator(_ListUsersPaginatorBase):
796
+ """
797
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/paginator/ListUsers.html#QuickSight.Paginator.ListUsers)
798
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/paginators/#listuserspaginator)
799
+ """
800
+
801
+ def paginate( # type: ignore[override]
802
+ self, **kwargs: Unpack[ListUsersRequestPaginateTypeDef]
803
+ ) -> PageIterator[ListUsersResponseTypeDef]:
804
+ """
805
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/paginator/ListUsers.html#QuickSight.Paginator.ListUsers.paginate)
806
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/paginators/#listuserspaginator)
807
+ """
808
+
809
+
810
+ if TYPE_CHECKING:
811
+ _SearchAnalysesPaginatorBase = Paginator[SearchAnalysesResponseTypeDef]
812
+ else:
813
+ _SearchAnalysesPaginatorBase = Paginator # type: ignore[assignment]
814
+
815
+
816
+ class SearchAnalysesPaginator(_SearchAnalysesPaginatorBase):
817
+ """
818
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/paginator/SearchAnalyses.html#QuickSight.Paginator.SearchAnalyses)
819
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/paginators/#searchanalysespaginator)
820
+ """
821
+
822
+ def paginate( # type: ignore[override]
823
+ self, **kwargs: Unpack[SearchAnalysesRequestPaginateTypeDef]
824
+ ) -> PageIterator[SearchAnalysesResponseTypeDef]:
825
+ """
826
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/paginator/SearchAnalyses.html#QuickSight.Paginator.SearchAnalyses.paginate)
827
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/paginators/#searchanalysespaginator)
828
+ """
829
+
830
+
831
+ if TYPE_CHECKING:
832
+ _SearchDashboardsPaginatorBase = Paginator[SearchDashboardsResponseTypeDef]
833
+ else:
834
+ _SearchDashboardsPaginatorBase = Paginator # type: ignore[assignment]
835
+
836
+
837
+ class SearchDashboardsPaginator(_SearchDashboardsPaginatorBase):
838
+ """
839
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/paginator/SearchDashboards.html#QuickSight.Paginator.SearchDashboards)
840
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/paginators/#searchdashboardspaginator)
841
+ """
842
+
843
+ def paginate( # type: ignore[override]
844
+ self, **kwargs: Unpack[SearchDashboardsRequestPaginateTypeDef]
845
+ ) -> PageIterator[SearchDashboardsResponseTypeDef]:
846
+ """
847
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/paginator/SearchDashboards.html#QuickSight.Paginator.SearchDashboards.paginate)
848
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/paginators/#searchdashboardspaginator)
849
+ """
850
+
851
+
852
+ if TYPE_CHECKING:
853
+ _SearchDataSetsPaginatorBase = Paginator[SearchDataSetsResponseTypeDef]
854
+ else:
855
+ _SearchDataSetsPaginatorBase = Paginator # type: ignore[assignment]
856
+
857
+
858
+ class SearchDataSetsPaginator(_SearchDataSetsPaginatorBase):
859
+ """
860
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/paginator/SearchDataSets.html#QuickSight.Paginator.SearchDataSets)
861
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/paginators/#searchdatasetspaginator)
862
+ """
863
+
864
+ def paginate( # type: ignore[override]
865
+ self, **kwargs: Unpack[SearchDataSetsRequestPaginateTypeDef]
866
+ ) -> PageIterator[SearchDataSetsResponseTypeDef]:
867
+ """
868
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/paginator/SearchDataSets.html#QuickSight.Paginator.SearchDataSets.paginate)
869
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/paginators/#searchdatasetspaginator)
870
+ """
871
+
872
+
873
+ if TYPE_CHECKING:
874
+ _SearchDataSourcesPaginatorBase = Paginator[SearchDataSourcesResponseTypeDef]
875
+ else:
876
+ _SearchDataSourcesPaginatorBase = Paginator # type: ignore[assignment]
877
+
878
+
879
+ class SearchDataSourcesPaginator(_SearchDataSourcesPaginatorBase):
880
+ """
881
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/paginator/SearchDataSources.html#QuickSight.Paginator.SearchDataSources)
882
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/paginators/#searchdatasourcespaginator)
883
+ """
884
+
885
+ def paginate( # type: ignore[override]
886
+ self, **kwargs: Unpack[SearchDataSourcesRequestPaginateTypeDef]
887
+ ) -> PageIterator[SearchDataSourcesResponseTypeDef]:
888
+ """
889
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/paginator/SearchDataSources.html#QuickSight.Paginator.SearchDataSources.paginate)
890
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/paginators/#searchdatasourcespaginator)
891
+ """
892
+
893
+
894
+ if TYPE_CHECKING:
895
+ _SearchFoldersPaginatorBase = Paginator[SearchFoldersResponseTypeDef]
896
+ else:
897
+ _SearchFoldersPaginatorBase = Paginator # type: ignore[assignment]
898
+
899
+
900
+ class SearchFoldersPaginator(_SearchFoldersPaginatorBase):
901
+ """
902
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/paginator/SearchFolders.html#QuickSight.Paginator.SearchFolders)
903
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/paginators/#searchfolderspaginator)
904
+ """
905
+
906
+ def paginate( # type: ignore[override]
907
+ self, **kwargs: Unpack[SearchFoldersRequestPaginateTypeDef]
908
+ ) -> PageIterator[SearchFoldersResponseTypeDef]:
909
+ """
910
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/paginator/SearchFolders.html#QuickSight.Paginator.SearchFolders.paginate)
911
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/paginators/#searchfolderspaginator)
912
+ """
913
+
914
+
915
+ if TYPE_CHECKING:
916
+ _SearchGroupsPaginatorBase = Paginator[SearchGroupsResponseTypeDef]
917
+ else:
918
+ _SearchGroupsPaginatorBase = Paginator # type: ignore[assignment]
919
+
920
+
921
+ class SearchGroupsPaginator(_SearchGroupsPaginatorBase):
922
+ """
923
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/paginator/SearchGroups.html#QuickSight.Paginator.SearchGroups)
924
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/paginators/#searchgroupspaginator)
925
+ """
926
+
927
+ def paginate( # type: ignore[override]
928
+ self, **kwargs: Unpack[SearchGroupsRequestPaginateTypeDef]
929
+ ) -> PageIterator[SearchGroupsResponseTypeDef]:
930
+ """
931
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/paginator/SearchGroups.html#QuickSight.Paginator.SearchGroups.paginate)
932
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/paginators/#searchgroupspaginator)
933
+ """
934
+
935
+
936
+ if TYPE_CHECKING:
937
+ _SearchTopicsPaginatorBase = Paginator[SearchTopicsResponseTypeDef]
938
+ else:
939
+ _SearchTopicsPaginatorBase = Paginator # type: ignore[assignment]
940
+
941
+
942
+ class SearchTopicsPaginator(_SearchTopicsPaginatorBase):
943
+ """
944
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/paginator/SearchTopics.html#QuickSight.Paginator.SearchTopics)
945
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/paginators/#searchtopicspaginator)
946
+ """
947
+
948
+ def paginate( # type: ignore[override]
949
+ self, **kwargs: Unpack[SearchTopicsRequestPaginateTypeDef]
950
+ ) -> PageIterator[SearchTopicsResponseTypeDef]:
951
+ """
952
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/quicksight/paginator/SearchTopics.html#QuickSight.Paginator.SearchTopics.paginate)
953
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_quicksight/paginators/#searchtopicspaginator)
954
+ """