types-boto3-organizations 1.35.71__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,349 @@
1
+ """
2
+ Type annotations for organizations service client paginators.
3
+
4
+ [Open 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 2024 Vlad Emelianov
53
+ """
54
+
55
+ import sys
56
+ from typing import Generic, Iterator, TypeVar
57
+
58
+ from botocore.paginate import PageIterator, Paginator
59
+
60
+ from .type_defs import (
61
+ ListAccountsForParentRequestListAccountsForParentPaginateTypeDef,
62
+ ListAccountsForParentResponseTypeDef,
63
+ ListAccountsRequestListAccountsPaginateTypeDef,
64
+ ListAccountsResponseTypeDef,
65
+ ListAWSServiceAccessForOrganizationRequestListAWSServiceAccessForOrganizationPaginateTypeDef,
66
+ ListAWSServiceAccessForOrganizationResponseTypeDef,
67
+ ListChildrenRequestListChildrenPaginateTypeDef,
68
+ ListChildrenResponseTypeDef,
69
+ ListCreateAccountStatusRequestListCreateAccountStatusPaginateTypeDef,
70
+ ListCreateAccountStatusResponseTypeDef,
71
+ ListDelegatedAdministratorsRequestListDelegatedAdministratorsPaginateTypeDef,
72
+ ListDelegatedAdministratorsResponseTypeDef,
73
+ ListDelegatedServicesForAccountRequestListDelegatedServicesForAccountPaginateTypeDef,
74
+ ListDelegatedServicesForAccountResponseTypeDef,
75
+ ListHandshakesForAccountRequestListHandshakesForAccountPaginateTypeDef,
76
+ ListHandshakesForAccountResponsePaginatorTypeDef,
77
+ ListHandshakesForOrganizationRequestListHandshakesForOrganizationPaginateTypeDef,
78
+ ListHandshakesForOrganizationResponsePaginatorTypeDef,
79
+ ListOrganizationalUnitsForParentRequestListOrganizationalUnitsForParentPaginateTypeDef,
80
+ ListOrganizationalUnitsForParentResponseTypeDef,
81
+ ListParentsRequestListParentsPaginateTypeDef,
82
+ ListParentsResponseTypeDef,
83
+ ListPoliciesForTargetRequestListPoliciesForTargetPaginateTypeDef,
84
+ ListPoliciesForTargetResponseTypeDef,
85
+ ListPoliciesRequestListPoliciesPaginateTypeDef,
86
+ ListPoliciesResponseTypeDef,
87
+ ListRootsRequestListRootsPaginateTypeDef,
88
+ ListRootsResponseTypeDef,
89
+ ListTagsForResourceRequestListTagsForResourcePaginateTypeDef,
90
+ ListTagsForResourceResponseTypeDef,
91
+ ListTargetsForPolicyRequestListTargetsForPolicyPaginateTypeDef,
92
+ ListTargetsForPolicyResponseTypeDef,
93
+ )
94
+
95
+ if sys.version_info >= (3, 12):
96
+ from typing import Unpack
97
+ else:
98
+ from typing_extensions import Unpack
99
+
100
+ __all__ = (
101
+ "ListAWSServiceAccessForOrganizationPaginator",
102
+ "ListAccountsForParentPaginator",
103
+ "ListAccountsPaginator",
104
+ "ListChildrenPaginator",
105
+ "ListCreateAccountStatusPaginator",
106
+ "ListDelegatedAdministratorsPaginator",
107
+ "ListDelegatedServicesForAccountPaginator",
108
+ "ListHandshakesForAccountPaginator",
109
+ "ListHandshakesForOrganizationPaginator",
110
+ "ListOrganizationalUnitsForParentPaginator",
111
+ "ListParentsPaginator",
112
+ "ListPoliciesForTargetPaginator",
113
+ "ListPoliciesPaginator",
114
+ "ListRootsPaginator",
115
+ "ListTagsForResourcePaginator",
116
+ "ListTargetsForPolicyPaginator",
117
+ )
118
+
119
+ _ItemTypeDef = TypeVar("_ItemTypeDef")
120
+
121
+ class _PageIterator(PageIterator, Generic[_ItemTypeDef]):
122
+ def __iter__(self) -> Iterator[_ItemTypeDef]:
123
+ """
124
+ Proxy method to specify iterator item type.
125
+ """
126
+
127
+ class ListAWSServiceAccessForOrganizationPaginator(Paginator):
128
+ """
129
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListAWSServiceAccessForOrganization.html#Organizations.Paginator.ListAWSServiceAccessForOrganization)
130
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listawsserviceaccessfororganizationpaginator)
131
+ """
132
+ def paginate(
133
+ self,
134
+ **kwargs: Unpack[
135
+ ListAWSServiceAccessForOrganizationRequestListAWSServiceAccessForOrganizationPaginateTypeDef
136
+ ],
137
+ ) -> _PageIterator[ListAWSServiceAccessForOrganizationResponseTypeDef]:
138
+ """
139
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListAWSServiceAccessForOrganization.html#Organizations.Paginator.ListAWSServiceAccessForOrganization.paginate)
140
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listawsserviceaccessfororganizationpaginator)
141
+ """
142
+
143
+ class ListAccountsForParentPaginator(Paginator):
144
+ """
145
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListAccountsForParent.html#Organizations.Paginator.ListAccountsForParent)
146
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listaccountsforparentpaginator)
147
+ """
148
+ def paginate(
149
+ self, **kwargs: Unpack[ListAccountsForParentRequestListAccountsForParentPaginateTypeDef]
150
+ ) -> _PageIterator[ListAccountsForParentResponseTypeDef]:
151
+ """
152
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListAccountsForParent.html#Organizations.Paginator.ListAccountsForParent.paginate)
153
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listaccountsforparentpaginator)
154
+ """
155
+
156
+ class ListAccountsPaginator(Paginator):
157
+ """
158
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListAccounts.html#Organizations.Paginator.ListAccounts)
159
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listaccountspaginator)
160
+ """
161
+ def paginate(
162
+ self, **kwargs: Unpack[ListAccountsRequestListAccountsPaginateTypeDef]
163
+ ) -> _PageIterator[ListAccountsResponseTypeDef]:
164
+ """
165
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListAccounts.html#Organizations.Paginator.ListAccounts.paginate)
166
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listaccountspaginator)
167
+ """
168
+
169
+ class ListChildrenPaginator(Paginator):
170
+ """
171
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListChildren.html#Organizations.Paginator.ListChildren)
172
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listchildrenpaginator)
173
+ """
174
+ def paginate(
175
+ self, **kwargs: Unpack[ListChildrenRequestListChildrenPaginateTypeDef]
176
+ ) -> _PageIterator[ListChildrenResponseTypeDef]:
177
+ """
178
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListChildren.html#Organizations.Paginator.ListChildren.paginate)
179
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listchildrenpaginator)
180
+ """
181
+
182
+ class ListCreateAccountStatusPaginator(Paginator):
183
+ """
184
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListCreateAccountStatus.html#Organizations.Paginator.ListCreateAccountStatus)
185
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listcreateaccountstatuspaginator)
186
+ """
187
+ def paginate(
188
+ self, **kwargs: Unpack[ListCreateAccountStatusRequestListCreateAccountStatusPaginateTypeDef]
189
+ ) -> _PageIterator[ListCreateAccountStatusResponseTypeDef]:
190
+ """
191
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListCreateAccountStatus.html#Organizations.Paginator.ListCreateAccountStatus.paginate)
192
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listcreateaccountstatuspaginator)
193
+ """
194
+
195
+ class ListDelegatedAdministratorsPaginator(Paginator):
196
+ """
197
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListDelegatedAdministrators.html#Organizations.Paginator.ListDelegatedAdministrators)
198
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listdelegatedadministratorspaginator)
199
+ """
200
+ def paginate(
201
+ self,
202
+ **kwargs: Unpack[
203
+ ListDelegatedAdministratorsRequestListDelegatedAdministratorsPaginateTypeDef
204
+ ],
205
+ ) -> _PageIterator[ListDelegatedAdministratorsResponseTypeDef]:
206
+ """
207
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListDelegatedAdministrators.html#Organizations.Paginator.ListDelegatedAdministrators.paginate)
208
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listdelegatedadministratorspaginator)
209
+ """
210
+
211
+ class ListDelegatedServicesForAccountPaginator(Paginator):
212
+ """
213
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListDelegatedServicesForAccount.html#Organizations.Paginator.ListDelegatedServicesForAccount)
214
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listdelegatedservicesforaccountpaginator)
215
+ """
216
+ def paginate(
217
+ self,
218
+ **kwargs: Unpack[
219
+ ListDelegatedServicesForAccountRequestListDelegatedServicesForAccountPaginateTypeDef
220
+ ],
221
+ ) -> _PageIterator[ListDelegatedServicesForAccountResponseTypeDef]:
222
+ """
223
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListDelegatedServicesForAccount.html#Organizations.Paginator.ListDelegatedServicesForAccount.paginate)
224
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listdelegatedservicesforaccountpaginator)
225
+ """
226
+
227
+ class ListHandshakesForAccountPaginator(Paginator):
228
+ """
229
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListHandshakesForAccount.html#Organizations.Paginator.ListHandshakesForAccount)
230
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listhandshakesforaccountpaginator)
231
+ """
232
+ def paginate(
233
+ self,
234
+ **kwargs: Unpack[ListHandshakesForAccountRequestListHandshakesForAccountPaginateTypeDef],
235
+ ) -> _PageIterator[ListHandshakesForAccountResponsePaginatorTypeDef]:
236
+ """
237
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListHandshakesForAccount.html#Organizations.Paginator.ListHandshakesForAccount.paginate)
238
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listhandshakesforaccountpaginator)
239
+ """
240
+
241
+ class ListHandshakesForOrganizationPaginator(Paginator):
242
+ """
243
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListHandshakesForOrganization.html#Organizations.Paginator.ListHandshakesForOrganization)
244
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listhandshakesfororganizationpaginator)
245
+ """
246
+ def paginate(
247
+ self,
248
+ **kwargs: Unpack[
249
+ ListHandshakesForOrganizationRequestListHandshakesForOrganizationPaginateTypeDef
250
+ ],
251
+ ) -> _PageIterator[ListHandshakesForOrganizationResponsePaginatorTypeDef]:
252
+ """
253
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListHandshakesForOrganization.html#Organizations.Paginator.ListHandshakesForOrganization.paginate)
254
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listhandshakesfororganizationpaginator)
255
+ """
256
+
257
+ class ListOrganizationalUnitsForParentPaginator(Paginator):
258
+ """
259
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListOrganizationalUnitsForParent.html#Organizations.Paginator.ListOrganizationalUnitsForParent)
260
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listorganizationalunitsforparentpaginator)
261
+ """
262
+ def paginate(
263
+ self,
264
+ **kwargs: Unpack[
265
+ ListOrganizationalUnitsForParentRequestListOrganizationalUnitsForParentPaginateTypeDef
266
+ ],
267
+ ) -> _PageIterator[ListOrganizationalUnitsForParentResponseTypeDef]:
268
+ """
269
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListOrganizationalUnitsForParent.html#Organizations.Paginator.ListOrganizationalUnitsForParent.paginate)
270
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listorganizationalunitsforparentpaginator)
271
+ """
272
+
273
+ class ListParentsPaginator(Paginator):
274
+ """
275
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListParents.html#Organizations.Paginator.ListParents)
276
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listparentspaginator)
277
+ """
278
+ def paginate(
279
+ self, **kwargs: Unpack[ListParentsRequestListParentsPaginateTypeDef]
280
+ ) -> _PageIterator[ListParentsResponseTypeDef]:
281
+ """
282
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListParents.html#Organizations.Paginator.ListParents.paginate)
283
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listparentspaginator)
284
+ """
285
+
286
+ class ListPoliciesForTargetPaginator(Paginator):
287
+ """
288
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListPoliciesForTarget.html#Organizations.Paginator.ListPoliciesForTarget)
289
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listpoliciesfortargetpaginator)
290
+ """
291
+ def paginate(
292
+ self, **kwargs: Unpack[ListPoliciesForTargetRequestListPoliciesForTargetPaginateTypeDef]
293
+ ) -> _PageIterator[ListPoliciesForTargetResponseTypeDef]:
294
+ """
295
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListPoliciesForTarget.html#Organizations.Paginator.ListPoliciesForTarget.paginate)
296
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listpoliciesfortargetpaginator)
297
+ """
298
+
299
+ class ListPoliciesPaginator(Paginator):
300
+ """
301
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListPolicies.html#Organizations.Paginator.ListPolicies)
302
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listpoliciespaginator)
303
+ """
304
+ def paginate(
305
+ self, **kwargs: Unpack[ListPoliciesRequestListPoliciesPaginateTypeDef]
306
+ ) -> _PageIterator[ListPoliciesResponseTypeDef]:
307
+ """
308
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListPolicies.html#Organizations.Paginator.ListPolicies.paginate)
309
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listpoliciespaginator)
310
+ """
311
+
312
+ class ListRootsPaginator(Paginator):
313
+ """
314
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListRoots.html#Organizations.Paginator.ListRoots)
315
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listrootspaginator)
316
+ """
317
+ def paginate(
318
+ self, **kwargs: Unpack[ListRootsRequestListRootsPaginateTypeDef]
319
+ ) -> _PageIterator[ListRootsResponseTypeDef]:
320
+ """
321
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListRoots.html#Organizations.Paginator.ListRoots.paginate)
322
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listrootspaginator)
323
+ """
324
+
325
+ class ListTagsForResourcePaginator(Paginator):
326
+ """
327
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListTagsForResource.html#Organizations.Paginator.ListTagsForResource)
328
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listtagsforresourcepaginator)
329
+ """
330
+ def paginate(
331
+ self, **kwargs: Unpack[ListTagsForResourceRequestListTagsForResourcePaginateTypeDef]
332
+ ) -> _PageIterator[ListTagsForResourceResponseTypeDef]:
333
+ """
334
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListTagsForResource.html#Organizations.Paginator.ListTagsForResource.paginate)
335
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listtagsforresourcepaginator)
336
+ """
337
+
338
+ class ListTargetsForPolicyPaginator(Paginator):
339
+ """
340
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListTargetsForPolicy.html#Organizations.Paginator.ListTargetsForPolicy)
341
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listtargetsforpolicypaginator)
342
+ """
343
+ def paginate(
344
+ self, **kwargs: Unpack[ListTargetsForPolicyRequestListTargetsForPolicyPaginateTypeDef]
345
+ ) -> _PageIterator[ListTargetsForPolicyResponseTypeDef]:
346
+ """
347
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListTargetsForPolicy.html#Organizations.Paginator.ListTargetsForPolicy.paginate)
348
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listtargetsforpolicypaginator)
349
+ """
File without changes