types-boto3-organizations 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,470 @@
1
+ """
2
+ Type annotations for organizations service client paginators.
3
+
4
+ [Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/)
5
+
6
+ Usage::
7
+
8
+ ```python
9
+ from boto3.session import Session
10
+
11
+ from types_boto3_organizations.client import OrganizationsClient
12
+ from types_boto3_organizations.paginator import (
13
+ ListAWSServiceAccessForOrganizationPaginator,
14
+ ListAccountsForParentPaginator,
15
+ ListAccountsPaginator,
16
+ ListChildrenPaginator,
17
+ ListCreateAccountStatusPaginator,
18
+ ListDelegatedAdministratorsPaginator,
19
+ ListDelegatedServicesForAccountPaginator,
20
+ ListHandshakesForAccountPaginator,
21
+ ListHandshakesForOrganizationPaginator,
22
+ ListOrganizationalUnitsForParentPaginator,
23
+ ListParentsPaginator,
24
+ ListPoliciesForTargetPaginator,
25
+ ListPoliciesPaginator,
26
+ ListRootsPaginator,
27
+ ListTagsForResourcePaginator,
28
+ ListTargetsForPolicyPaginator,
29
+ )
30
+
31
+ session = Session()
32
+ client: OrganizationsClient = session.client("organizations")
33
+
34
+ list_aws_service_access_for_organization_paginator: ListAWSServiceAccessForOrganizationPaginator = client.get_paginator("list_aws_service_access_for_organization")
35
+ list_accounts_for_parent_paginator: ListAccountsForParentPaginator = client.get_paginator("list_accounts_for_parent")
36
+ list_accounts_paginator: ListAccountsPaginator = client.get_paginator("list_accounts")
37
+ list_children_paginator: ListChildrenPaginator = client.get_paginator("list_children")
38
+ list_create_account_status_paginator: ListCreateAccountStatusPaginator = client.get_paginator("list_create_account_status")
39
+ list_delegated_administrators_paginator: ListDelegatedAdministratorsPaginator = client.get_paginator("list_delegated_administrators")
40
+ list_delegated_services_for_account_paginator: ListDelegatedServicesForAccountPaginator = client.get_paginator("list_delegated_services_for_account")
41
+ list_handshakes_for_account_paginator: ListHandshakesForAccountPaginator = client.get_paginator("list_handshakes_for_account")
42
+ list_handshakes_for_organization_paginator: ListHandshakesForOrganizationPaginator = client.get_paginator("list_handshakes_for_organization")
43
+ list_organizational_units_for_parent_paginator: ListOrganizationalUnitsForParentPaginator = client.get_paginator("list_organizational_units_for_parent")
44
+ list_parents_paginator: ListParentsPaginator = client.get_paginator("list_parents")
45
+ list_policies_for_target_paginator: ListPoliciesForTargetPaginator = client.get_paginator("list_policies_for_target")
46
+ list_policies_paginator: ListPoliciesPaginator = client.get_paginator("list_policies")
47
+ list_roots_paginator: ListRootsPaginator = client.get_paginator("list_roots")
48
+ list_tags_for_resource_paginator: ListTagsForResourcePaginator = client.get_paginator("list_tags_for_resource")
49
+ list_targets_for_policy_paginator: ListTargetsForPolicyPaginator = client.get_paginator("list_targets_for_policy")
50
+ ```
51
+
52
+ Copyright 2025 Vlad Emelianov
53
+ """
54
+
55
+ from __future__ import annotations
56
+
57
+ import sys
58
+ from typing import TYPE_CHECKING
59
+
60
+ from botocore.paginate import PageIterator, Paginator
61
+
62
+ from .type_defs import (
63
+ ListAccountsForParentRequestPaginateTypeDef,
64
+ ListAccountsForParentResponseTypeDef,
65
+ ListAccountsRequestPaginateTypeDef,
66
+ ListAccountsResponseTypeDef,
67
+ ListAWSServiceAccessForOrganizationRequestPaginateTypeDef,
68
+ ListAWSServiceAccessForOrganizationResponseTypeDef,
69
+ ListChildrenRequestPaginateTypeDef,
70
+ ListChildrenResponseTypeDef,
71
+ ListCreateAccountStatusRequestPaginateTypeDef,
72
+ ListCreateAccountStatusResponseTypeDef,
73
+ ListDelegatedAdministratorsRequestPaginateTypeDef,
74
+ ListDelegatedAdministratorsResponseTypeDef,
75
+ ListDelegatedServicesForAccountRequestPaginateTypeDef,
76
+ ListDelegatedServicesForAccountResponseTypeDef,
77
+ ListHandshakesForAccountRequestPaginateTypeDef,
78
+ ListHandshakesForAccountResponsePaginatorTypeDef,
79
+ ListHandshakesForOrganizationRequestPaginateTypeDef,
80
+ ListHandshakesForOrganizationResponsePaginatorTypeDef,
81
+ ListOrganizationalUnitsForParentRequestPaginateTypeDef,
82
+ ListOrganizationalUnitsForParentResponseTypeDef,
83
+ ListParentsRequestPaginateTypeDef,
84
+ ListParentsResponseTypeDef,
85
+ ListPoliciesForTargetRequestPaginateTypeDef,
86
+ ListPoliciesForTargetResponseTypeDef,
87
+ ListPoliciesRequestPaginateTypeDef,
88
+ ListPoliciesResponseTypeDef,
89
+ ListRootsRequestPaginateTypeDef,
90
+ ListRootsResponseTypeDef,
91
+ ListTagsForResourceRequestPaginateTypeDef,
92
+ ListTagsForResourceResponseTypeDef,
93
+ ListTargetsForPolicyRequestPaginateTypeDef,
94
+ ListTargetsForPolicyResponseTypeDef,
95
+ )
96
+
97
+ if sys.version_info >= (3, 12):
98
+ from typing import Unpack
99
+ else:
100
+ from typing_extensions import Unpack
101
+
102
+
103
+ __all__ = (
104
+ "ListAWSServiceAccessForOrganizationPaginator",
105
+ "ListAccountsForParentPaginator",
106
+ "ListAccountsPaginator",
107
+ "ListChildrenPaginator",
108
+ "ListCreateAccountStatusPaginator",
109
+ "ListDelegatedAdministratorsPaginator",
110
+ "ListDelegatedServicesForAccountPaginator",
111
+ "ListHandshakesForAccountPaginator",
112
+ "ListHandshakesForOrganizationPaginator",
113
+ "ListOrganizationalUnitsForParentPaginator",
114
+ "ListParentsPaginator",
115
+ "ListPoliciesForTargetPaginator",
116
+ "ListPoliciesPaginator",
117
+ "ListRootsPaginator",
118
+ "ListTagsForResourcePaginator",
119
+ "ListTargetsForPolicyPaginator",
120
+ )
121
+
122
+
123
+ if TYPE_CHECKING:
124
+ _ListAWSServiceAccessForOrganizationPaginatorBase = Paginator[
125
+ ListAWSServiceAccessForOrganizationResponseTypeDef
126
+ ]
127
+ else:
128
+ _ListAWSServiceAccessForOrganizationPaginatorBase = Paginator # type: ignore[assignment]
129
+
130
+
131
+ class ListAWSServiceAccessForOrganizationPaginator(
132
+ _ListAWSServiceAccessForOrganizationPaginatorBase
133
+ ):
134
+ """
135
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListAWSServiceAccessForOrganization.html#Organizations.Paginator.ListAWSServiceAccessForOrganization)
136
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listawsserviceaccessfororganizationpaginator)
137
+ """
138
+
139
+ def paginate( # type: ignore[override]
140
+ self, **kwargs: Unpack[ListAWSServiceAccessForOrganizationRequestPaginateTypeDef]
141
+ ) -> PageIterator[ListAWSServiceAccessForOrganizationResponseTypeDef]:
142
+ """
143
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListAWSServiceAccessForOrganization.html#Organizations.Paginator.ListAWSServiceAccessForOrganization.paginate)
144
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listawsserviceaccessfororganizationpaginator)
145
+ """
146
+
147
+
148
+ if TYPE_CHECKING:
149
+ _ListAccountsForParentPaginatorBase = Paginator[ListAccountsForParentResponseTypeDef]
150
+ else:
151
+ _ListAccountsForParentPaginatorBase = Paginator # type: ignore[assignment]
152
+
153
+
154
+ class ListAccountsForParentPaginator(_ListAccountsForParentPaginatorBase):
155
+ """
156
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListAccountsForParent.html#Organizations.Paginator.ListAccountsForParent)
157
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listaccountsforparentpaginator)
158
+ """
159
+
160
+ def paginate( # type: ignore[override]
161
+ self, **kwargs: Unpack[ListAccountsForParentRequestPaginateTypeDef]
162
+ ) -> PageIterator[ListAccountsForParentResponseTypeDef]:
163
+ """
164
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListAccountsForParent.html#Organizations.Paginator.ListAccountsForParent.paginate)
165
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listaccountsforparentpaginator)
166
+ """
167
+
168
+
169
+ if TYPE_CHECKING:
170
+ _ListAccountsPaginatorBase = Paginator[ListAccountsResponseTypeDef]
171
+ else:
172
+ _ListAccountsPaginatorBase = Paginator # type: ignore[assignment]
173
+
174
+
175
+ class ListAccountsPaginator(_ListAccountsPaginatorBase):
176
+ """
177
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListAccounts.html#Organizations.Paginator.ListAccounts)
178
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listaccountspaginator)
179
+ """
180
+
181
+ def paginate( # type: ignore[override]
182
+ self, **kwargs: Unpack[ListAccountsRequestPaginateTypeDef]
183
+ ) -> PageIterator[ListAccountsResponseTypeDef]:
184
+ """
185
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListAccounts.html#Organizations.Paginator.ListAccounts.paginate)
186
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listaccountspaginator)
187
+ """
188
+
189
+
190
+ if TYPE_CHECKING:
191
+ _ListChildrenPaginatorBase = Paginator[ListChildrenResponseTypeDef]
192
+ else:
193
+ _ListChildrenPaginatorBase = Paginator # type: ignore[assignment]
194
+
195
+
196
+ class ListChildrenPaginator(_ListChildrenPaginatorBase):
197
+ """
198
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListChildren.html#Organizations.Paginator.ListChildren)
199
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listchildrenpaginator)
200
+ """
201
+
202
+ def paginate( # type: ignore[override]
203
+ self, **kwargs: Unpack[ListChildrenRequestPaginateTypeDef]
204
+ ) -> PageIterator[ListChildrenResponseTypeDef]:
205
+ """
206
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListChildren.html#Organizations.Paginator.ListChildren.paginate)
207
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listchildrenpaginator)
208
+ """
209
+
210
+
211
+ if TYPE_CHECKING:
212
+ _ListCreateAccountStatusPaginatorBase = Paginator[ListCreateAccountStatusResponseTypeDef]
213
+ else:
214
+ _ListCreateAccountStatusPaginatorBase = Paginator # type: ignore[assignment]
215
+
216
+
217
+ class ListCreateAccountStatusPaginator(_ListCreateAccountStatusPaginatorBase):
218
+ """
219
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListCreateAccountStatus.html#Organizations.Paginator.ListCreateAccountStatus)
220
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listcreateaccountstatuspaginator)
221
+ """
222
+
223
+ def paginate( # type: ignore[override]
224
+ self, **kwargs: Unpack[ListCreateAccountStatusRequestPaginateTypeDef]
225
+ ) -> PageIterator[ListCreateAccountStatusResponseTypeDef]:
226
+ """
227
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListCreateAccountStatus.html#Organizations.Paginator.ListCreateAccountStatus.paginate)
228
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listcreateaccountstatuspaginator)
229
+ """
230
+
231
+
232
+ if TYPE_CHECKING:
233
+ _ListDelegatedAdministratorsPaginatorBase = Paginator[
234
+ ListDelegatedAdministratorsResponseTypeDef
235
+ ]
236
+ else:
237
+ _ListDelegatedAdministratorsPaginatorBase = Paginator # type: ignore[assignment]
238
+
239
+
240
+ class ListDelegatedAdministratorsPaginator(_ListDelegatedAdministratorsPaginatorBase):
241
+ """
242
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListDelegatedAdministrators.html#Organizations.Paginator.ListDelegatedAdministrators)
243
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listdelegatedadministratorspaginator)
244
+ """
245
+
246
+ def paginate( # type: ignore[override]
247
+ self, **kwargs: Unpack[ListDelegatedAdministratorsRequestPaginateTypeDef]
248
+ ) -> PageIterator[ListDelegatedAdministratorsResponseTypeDef]:
249
+ """
250
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListDelegatedAdministrators.html#Organizations.Paginator.ListDelegatedAdministrators.paginate)
251
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listdelegatedadministratorspaginator)
252
+ """
253
+
254
+
255
+ if TYPE_CHECKING:
256
+ _ListDelegatedServicesForAccountPaginatorBase = Paginator[
257
+ ListDelegatedServicesForAccountResponseTypeDef
258
+ ]
259
+ else:
260
+ _ListDelegatedServicesForAccountPaginatorBase = Paginator # type: ignore[assignment]
261
+
262
+
263
+ class ListDelegatedServicesForAccountPaginator(_ListDelegatedServicesForAccountPaginatorBase):
264
+ """
265
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListDelegatedServicesForAccount.html#Organizations.Paginator.ListDelegatedServicesForAccount)
266
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listdelegatedservicesforaccountpaginator)
267
+ """
268
+
269
+ def paginate( # type: ignore[override]
270
+ self, **kwargs: Unpack[ListDelegatedServicesForAccountRequestPaginateTypeDef]
271
+ ) -> PageIterator[ListDelegatedServicesForAccountResponseTypeDef]:
272
+ """
273
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListDelegatedServicesForAccount.html#Organizations.Paginator.ListDelegatedServicesForAccount.paginate)
274
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listdelegatedservicesforaccountpaginator)
275
+ """
276
+
277
+
278
+ if TYPE_CHECKING:
279
+ _ListHandshakesForAccountPaginatorBase = Paginator[
280
+ ListHandshakesForAccountResponsePaginatorTypeDef
281
+ ]
282
+ else:
283
+ _ListHandshakesForAccountPaginatorBase = Paginator # type: ignore[assignment]
284
+
285
+
286
+ class ListHandshakesForAccountPaginator(_ListHandshakesForAccountPaginatorBase):
287
+ """
288
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListHandshakesForAccount.html#Organizations.Paginator.ListHandshakesForAccount)
289
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listhandshakesforaccountpaginator)
290
+ """
291
+
292
+ def paginate( # type: ignore[override]
293
+ self, **kwargs: Unpack[ListHandshakesForAccountRequestPaginateTypeDef]
294
+ ) -> PageIterator[ListHandshakesForAccountResponsePaginatorTypeDef]:
295
+ """
296
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListHandshakesForAccount.html#Organizations.Paginator.ListHandshakesForAccount.paginate)
297
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listhandshakesforaccountpaginator)
298
+ """
299
+
300
+
301
+ if TYPE_CHECKING:
302
+ _ListHandshakesForOrganizationPaginatorBase = Paginator[
303
+ ListHandshakesForOrganizationResponsePaginatorTypeDef
304
+ ]
305
+ else:
306
+ _ListHandshakesForOrganizationPaginatorBase = Paginator # type: ignore[assignment]
307
+
308
+
309
+ class ListHandshakesForOrganizationPaginator(_ListHandshakesForOrganizationPaginatorBase):
310
+ """
311
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListHandshakesForOrganization.html#Organizations.Paginator.ListHandshakesForOrganization)
312
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listhandshakesfororganizationpaginator)
313
+ """
314
+
315
+ def paginate( # type: ignore[override]
316
+ self, **kwargs: Unpack[ListHandshakesForOrganizationRequestPaginateTypeDef]
317
+ ) -> PageIterator[ListHandshakesForOrganizationResponsePaginatorTypeDef]:
318
+ """
319
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListHandshakesForOrganization.html#Organizations.Paginator.ListHandshakesForOrganization.paginate)
320
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listhandshakesfororganizationpaginator)
321
+ """
322
+
323
+
324
+ if TYPE_CHECKING:
325
+ _ListOrganizationalUnitsForParentPaginatorBase = Paginator[
326
+ ListOrganizationalUnitsForParentResponseTypeDef
327
+ ]
328
+ else:
329
+ _ListOrganizationalUnitsForParentPaginatorBase = Paginator # type: ignore[assignment]
330
+
331
+
332
+ class ListOrganizationalUnitsForParentPaginator(_ListOrganizationalUnitsForParentPaginatorBase):
333
+ """
334
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListOrganizationalUnitsForParent.html#Organizations.Paginator.ListOrganizationalUnitsForParent)
335
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listorganizationalunitsforparentpaginator)
336
+ """
337
+
338
+ def paginate( # type: ignore[override]
339
+ self, **kwargs: Unpack[ListOrganizationalUnitsForParentRequestPaginateTypeDef]
340
+ ) -> PageIterator[ListOrganizationalUnitsForParentResponseTypeDef]:
341
+ """
342
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListOrganizationalUnitsForParent.html#Organizations.Paginator.ListOrganizationalUnitsForParent.paginate)
343
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listorganizationalunitsforparentpaginator)
344
+ """
345
+
346
+
347
+ if TYPE_CHECKING:
348
+ _ListParentsPaginatorBase = Paginator[ListParentsResponseTypeDef]
349
+ else:
350
+ _ListParentsPaginatorBase = Paginator # type: ignore[assignment]
351
+
352
+
353
+ class ListParentsPaginator(_ListParentsPaginatorBase):
354
+ """
355
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListParents.html#Organizations.Paginator.ListParents)
356
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listparentspaginator)
357
+ """
358
+
359
+ def paginate( # type: ignore[override]
360
+ self, **kwargs: Unpack[ListParentsRequestPaginateTypeDef]
361
+ ) -> PageIterator[ListParentsResponseTypeDef]:
362
+ """
363
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListParents.html#Organizations.Paginator.ListParents.paginate)
364
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listparentspaginator)
365
+ """
366
+
367
+
368
+ if TYPE_CHECKING:
369
+ _ListPoliciesForTargetPaginatorBase = Paginator[ListPoliciesForTargetResponseTypeDef]
370
+ else:
371
+ _ListPoliciesForTargetPaginatorBase = Paginator # type: ignore[assignment]
372
+
373
+
374
+ class ListPoliciesForTargetPaginator(_ListPoliciesForTargetPaginatorBase):
375
+ """
376
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListPoliciesForTarget.html#Organizations.Paginator.ListPoliciesForTarget)
377
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listpoliciesfortargetpaginator)
378
+ """
379
+
380
+ def paginate( # type: ignore[override]
381
+ self, **kwargs: Unpack[ListPoliciesForTargetRequestPaginateTypeDef]
382
+ ) -> PageIterator[ListPoliciesForTargetResponseTypeDef]:
383
+ """
384
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListPoliciesForTarget.html#Organizations.Paginator.ListPoliciesForTarget.paginate)
385
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listpoliciesfortargetpaginator)
386
+ """
387
+
388
+
389
+ if TYPE_CHECKING:
390
+ _ListPoliciesPaginatorBase = Paginator[ListPoliciesResponseTypeDef]
391
+ else:
392
+ _ListPoliciesPaginatorBase = Paginator # type: ignore[assignment]
393
+
394
+
395
+ class ListPoliciesPaginator(_ListPoliciesPaginatorBase):
396
+ """
397
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListPolicies.html#Organizations.Paginator.ListPolicies)
398
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listpoliciespaginator)
399
+ """
400
+
401
+ def paginate( # type: ignore[override]
402
+ self, **kwargs: Unpack[ListPoliciesRequestPaginateTypeDef]
403
+ ) -> PageIterator[ListPoliciesResponseTypeDef]:
404
+ """
405
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListPolicies.html#Organizations.Paginator.ListPolicies.paginate)
406
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listpoliciespaginator)
407
+ """
408
+
409
+
410
+ if TYPE_CHECKING:
411
+ _ListRootsPaginatorBase = Paginator[ListRootsResponseTypeDef]
412
+ else:
413
+ _ListRootsPaginatorBase = Paginator # type: ignore[assignment]
414
+
415
+
416
+ class ListRootsPaginator(_ListRootsPaginatorBase):
417
+ """
418
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListRoots.html#Organizations.Paginator.ListRoots)
419
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listrootspaginator)
420
+ """
421
+
422
+ def paginate( # type: ignore[override]
423
+ self, **kwargs: Unpack[ListRootsRequestPaginateTypeDef]
424
+ ) -> PageIterator[ListRootsResponseTypeDef]:
425
+ """
426
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListRoots.html#Organizations.Paginator.ListRoots.paginate)
427
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listrootspaginator)
428
+ """
429
+
430
+
431
+ if TYPE_CHECKING:
432
+ _ListTagsForResourcePaginatorBase = Paginator[ListTagsForResourceResponseTypeDef]
433
+ else:
434
+ _ListTagsForResourcePaginatorBase = Paginator # type: ignore[assignment]
435
+
436
+
437
+ class ListTagsForResourcePaginator(_ListTagsForResourcePaginatorBase):
438
+ """
439
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListTagsForResource.html#Organizations.Paginator.ListTagsForResource)
440
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listtagsforresourcepaginator)
441
+ """
442
+
443
+ def paginate( # type: ignore[override]
444
+ self, **kwargs: Unpack[ListTagsForResourceRequestPaginateTypeDef]
445
+ ) -> PageIterator[ListTagsForResourceResponseTypeDef]:
446
+ """
447
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListTagsForResource.html#Organizations.Paginator.ListTagsForResource.paginate)
448
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listtagsforresourcepaginator)
449
+ """
450
+
451
+
452
+ if TYPE_CHECKING:
453
+ _ListTargetsForPolicyPaginatorBase = Paginator[ListTargetsForPolicyResponseTypeDef]
454
+ else:
455
+ _ListTargetsForPolicyPaginatorBase = Paginator # type: ignore[assignment]
456
+
457
+
458
+ class ListTargetsForPolicyPaginator(_ListTargetsForPolicyPaginatorBase):
459
+ """
460
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListTargetsForPolicy.html#Organizations.Paginator.ListTargetsForPolicy)
461
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listtargetsforpolicypaginator)
462
+ """
463
+
464
+ def paginate( # type: ignore[override]
465
+ self, **kwargs: Unpack[ListTargetsForPolicyRequestPaginateTypeDef]
466
+ ) -> PageIterator[ListTargetsForPolicyResponseTypeDef]:
467
+ """
468
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListTargetsForPolicy.html#Organizations.Paginator.ListTargetsForPolicy.paginate)
469
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listtargetsforpolicypaginator)
470
+ """