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,972 @@
1
+ """
2
+ Type annotations for organizations service Client.
3
+
4
+ [Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/)
5
+
6
+ Usage::
7
+
8
+ ```python
9
+ from boto3.session import Session
10
+ from types_boto3_organizations.client import OrganizationsClient
11
+
12
+ session = Session()
13
+ client: OrganizationsClient = session.client("organizations")
14
+ ```
15
+
16
+ Copyright 2025 Vlad Emelianov
17
+ """
18
+
19
+ from __future__ import annotations
20
+
21
+ import sys
22
+ from typing import Any, overload
23
+
24
+ from botocore.client import BaseClient, ClientMeta
25
+ from botocore.errorfactory import BaseClientExceptions
26
+ from botocore.exceptions import ClientError as BotocoreClientError
27
+
28
+ from .paginator import (
29
+ ListAccountsForParentPaginator,
30
+ ListAccountsPaginator,
31
+ ListAWSServiceAccessForOrganizationPaginator,
32
+ ListChildrenPaginator,
33
+ ListCreateAccountStatusPaginator,
34
+ ListDelegatedAdministratorsPaginator,
35
+ ListDelegatedServicesForAccountPaginator,
36
+ ListHandshakesForAccountPaginator,
37
+ ListHandshakesForOrganizationPaginator,
38
+ ListOrganizationalUnitsForParentPaginator,
39
+ ListParentsPaginator,
40
+ ListPoliciesForTargetPaginator,
41
+ ListPoliciesPaginator,
42
+ ListRootsPaginator,
43
+ ListTagsForResourcePaginator,
44
+ ListTargetsForPolicyPaginator,
45
+ )
46
+ from .type_defs import (
47
+ AcceptHandshakeRequestRequestTypeDef,
48
+ AcceptHandshakeResponseTypeDef,
49
+ AttachPolicyRequestRequestTypeDef,
50
+ CancelHandshakeRequestRequestTypeDef,
51
+ CancelHandshakeResponseTypeDef,
52
+ CloseAccountRequestRequestTypeDef,
53
+ CreateAccountRequestRequestTypeDef,
54
+ CreateAccountResponseTypeDef,
55
+ CreateGovCloudAccountRequestRequestTypeDef,
56
+ CreateGovCloudAccountResponseTypeDef,
57
+ CreateOrganizationalUnitRequestRequestTypeDef,
58
+ CreateOrganizationalUnitResponseTypeDef,
59
+ CreateOrganizationRequestRequestTypeDef,
60
+ CreateOrganizationResponseTypeDef,
61
+ CreatePolicyRequestRequestTypeDef,
62
+ CreatePolicyResponseTypeDef,
63
+ DeclineHandshakeRequestRequestTypeDef,
64
+ DeclineHandshakeResponseTypeDef,
65
+ DeleteOrganizationalUnitRequestRequestTypeDef,
66
+ DeletePolicyRequestRequestTypeDef,
67
+ DeregisterDelegatedAdministratorRequestRequestTypeDef,
68
+ DescribeAccountRequestRequestTypeDef,
69
+ DescribeAccountResponseTypeDef,
70
+ DescribeCreateAccountStatusRequestRequestTypeDef,
71
+ DescribeCreateAccountStatusResponseTypeDef,
72
+ DescribeEffectivePolicyRequestRequestTypeDef,
73
+ DescribeEffectivePolicyResponseTypeDef,
74
+ DescribeHandshakeRequestRequestTypeDef,
75
+ DescribeHandshakeResponseTypeDef,
76
+ DescribeOrganizationalUnitRequestRequestTypeDef,
77
+ DescribeOrganizationalUnitResponseTypeDef,
78
+ DescribeOrganizationResponseTypeDef,
79
+ DescribePolicyRequestRequestTypeDef,
80
+ DescribePolicyResponseTypeDef,
81
+ DescribeResourcePolicyResponseTypeDef,
82
+ DetachPolicyRequestRequestTypeDef,
83
+ DisableAWSServiceAccessRequestRequestTypeDef,
84
+ DisablePolicyTypeRequestRequestTypeDef,
85
+ DisablePolicyTypeResponseTypeDef,
86
+ EmptyResponseMetadataTypeDef,
87
+ EnableAllFeaturesResponseTypeDef,
88
+ EnableAWSServiceAccessRequestRequestTypeDef,
89
+ EnablePolicyTypeRequestRequestTypeDef,
90
+ EnablePolicyTypeResponseTypeDef,
91
+ InviteAccountToOrganizationRequestRequestTypeDef,
92
+ InviteAccountToOrganizationResponseTypeDef,
93
+ ListAccountsForParentRequestRequestTypeDef,
94
+ ListAccountsForParentResponseTypeDef,
95
+ ListAccountsRequestRequestTypeDef,
96
+ ListAccountsResponseTypeDef,
97
+ ListAWSServiceAccessForOrganizationRequestRequestTypeDef,
98
+ ListAWSServiceAccessForOrganizationResponseTypeDef,
99
+ ListChildrenRequestRequestTypeDef,
100
+ ListChildrenResponseTypeDef,
101
+ ListCreateAccountStatusRequestRequestTypeDef,
102
+ ListCreateAccountStatusResponseTypeDef,
103
+ ListDelegatedAdministratorsRequestRequestTypeDef,
104
+ ListDelegatedAdministratorsResponseTypeDef,
105
+ ListDelegatedServicesForAccountRequestRequestTypeDef,
106
+ ListDelegatedServicesForAccountResponseTypeDef,
107
+ ListHandshakesForAccountRequestRequestTypeDef,
108
+ ListHandshakesForAccountResponseTypeDef,
109
+ ListHandshakesForOrganizationRequestRequestTypeDef,
110
+ ListHandshakesForOrganizationResponseTypeDef,
111
+ ListOrganizationalUnitsForParentRequestRequestTypeDef,
112
+ ListOrganizationalUnitsForParentResponseTypeDef,
113
+ ListParentsRequestRequestTypeDef,
114
+ ListParentsResponseTypeDef,
115
+ ListPoliciesForTargetRequestRequestTypeDef,
116
+ ListPoliciesForTargetResponseTypeDef,
117
+ ListPoliciesRequestRequestTypeDef,
118
+ ListPoliciesResponseTypeDef,
119
+ ListRootsRequestRequestTypeDef,
120
+ ListRootsResponseTypeDef,
121
+ ListTagsForResourceRequestRequestTypeDef,
122
+ ListTagsForResourceResponseTypeDef,
123
+ ListTargetsForPolicyRequestRequestTypeDef,
124
+ ListTargetsForPolicyResponseTypeDef,
125
+ MoveAccountRequestRequestTypeDef,
126
+ PutResourcePolicyRequestRequestTypeDef,
127
+ PutResourcePolicyResponseTypeDef,
128
+ RegisterDelegatedAdministratorRequestRequestTypeDef,
129
+ RemoveAccountFromOrganizationRequestRequestTypeDef,
130
+ TagResourceRequestRequestTypeDef,
131
+ UntagResourceRequestRequestTypeDef,
132
+ UpdateOrganizationalUnitRequestRequestTypeDef,
133
+ UpdateOrganizationalUnitResponseTypeDef,
134
+ UpdatePolicyRequestRequestTypeDef,
135
+ UpdatePolicyResponseTypeDef,
136
+ )
137
+
138
+ if sys.version_info >= (3, 9):
139
+ from builtins import type as Type
140
+ from collections.abc import Mapping
141
+ else:
142
+ from typing import Mapping, Type
143
+ if sys.version_info >= (3, 12):
144
+ from typing import Literal, Unpack
145
+ else:
146
+ from typing_extensions import Literal, Unpack
147
+
148
+ __all__ = ("OrganizationsClient",)
149
+
150
+ class Exceptions(BaseClientExceptions):
151
+ AWSOrganizationsNotInUseException: Type[BotocoreClientError]
152
+ AccessDeniedException: Type[BotocoreClientError]
153
+ AccessDeniedForDependencyException: Type[BotocoreClientError]
154
+ AccountAlreadyClosedException: Type[BotocoreClientError]
155
+ AccountAlreadyRegisteredException: Type[BotocoreClientError]
156
+ AccountNotFoundException: Type[BotocoreClientError]
157
+ AccountNotRegisteredException: Type[BotocoreClientError]
158
+ AccountOwnerNotVerifiedException: Type[BotocoreClientError]
159
+ AlreadyInOrganizationException: Type[BotocoreClientError]
160
+ ChildNotFoundException: Type[BotocoreClientError]
161
+ ClientError: Type[BotocoreClientError]
162
+ ConcurrentModificationException: Type[BotocoreClientError]
163
+ ConflictException: Type[BotocoreClientError]
164
+ ConstraintViolationException: Type[BotocoreClientError]
165
+ CreateAccountStatusNotFoundException: Type[BotocoreClientError]
166
+ DestinationParentNotFoundException: Type[BotocoreClientError]
167
+ DuplicateAccountException: Type[BotocoreClientError]
168
+ DuplicateHandshakeException: Type[BotocoreClientError]
169
+ DuplicateOrganizationalUnitException: Type[BotocoreClientError]
170
+ DuplicatePolicyAttachmentException: Type[BotocoreClientError]
171
+ DuplicatePolicyException: Type[BotocoreClientError]
172
+ EffectivePolicyNotFoundException: Type[BotocoreClientError]
173
+ FinalizingOrganizationException: Type[BotocoreClientError]
174
+ HandshakeAlreadyInStateException: Type[BotocoreClientError]
175
+ HandshakeConstraintViolationException: Type[BotocoreClientError]
176
+ HandshakeNotFoundException: Type[BotocoreClientError]
177
+ InvalidHandshakeTransitionException: Type[BotocoreClientError]
178
+ InvalidInputException: Type[BotocoreClientError]
179
+ MalformedPolicyDocumentException: Type[BotocoreClientError]
180
+ MasterCannotLeaveOrganizationException: Type[BotocoreClientError]
181
+ OrganizationNotEmptyException: Type[BotocoreClientError]
182
+ OrganizationalUnitNotEmptyException: Type[BotocoreClientError]
183
+ OrganizationalUnitNotFoundException: Type[BotocoreClientError]
184
+ ParentNotFoundException: Type[BotocoreClientError]
185
+ PolicyChangesInProgressException: Type[BotocoreClientError]
186
+ PolicyInUseException: Type[BotocoreClientError]
187
+ PolicyNotAttachedException: Type[BotocoreClientError]
188
+ PolicyNotFoundException: Type[BotocoreClientError]
189
+ PolicyTypeAlreadyEnabledException: Type[BotocoreClientError]
190
+ PolicyTypeNotAvailableForOrganizationException: Type[BotocoreClientError]
191
+ PolicyTypeNotEnabledException: Type[BotocoreClientError]
192
+ ResourcePolicyNotFoundException: Type[BotocoreClientError]
193
+ RootNotFoundException: Type[BotocoreClientError]
194
+ ServiceException: Type[BotocoreClientError]
195
+ SourceParentNotFoundException: Type[BotocoreClientError]
196
+ TargetNotFoundException: Type[BotocoreClientError]
197
+ TooManyRequestsException: Type[BotocoreClientError]
198
+ UnsupportedAPIEndpointException: Type[BotocoreClientError]
199
+
200
+ class OrganizationsClient(BaseClient):
201
+ """
202
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations.html#Organizations.Client)
203
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/)
204
+ """
205
+
206
+ meta: ClientMeta
207
+
208
+ @property
209
+ def exceptions(self) -> Exceptions:
210
+ """
211
+ OrganizationsClient exceptions.
212
+
213
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations.html#Organizations.Client)
214
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#exceptions)
215
+ """
216
+
217
+ def can_paginate(self, operation_name: str) -> bool:
218
+ """
219
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/client/can_paginate.html)
220
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#can_paginate)
221
+ """
222
+
223
+ def generate_presigned_url(
224
+ self,
225
+ ClientMethod: str,
226
+ Params: Mapping[str, Any] = ...,
227
+ ExpiresIn: int = 3600,
228
+ HttpMethod: str = ...,
229
+ ) -> str:
230
+ """
231
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/client/generate_presigned_url.html)
232
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#generate_presigned_url)
233
+ """
234
+
235
+ def accept_handshake(
236
+ self, **kwargs: Unpack[AcceptHandshakeRequestRequestTypeDef]
237
+ ) -> AcceptHandshakeResponseTypeDef:
238
+ """
239
+ Sends a response to the originator of a handshake agreeing to the action
240
+ proposed by the handshake request.
241
+
242
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/client/accept_handshake.html)
243
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#accept_handshake)
244
+ """
245
+
246
+ def attach_policy(
247
+ self, **kwargs: Unpack[AttachPolicyRequestRequestTypeDef]
248
+ ) -> EmptyResponseMetadataTypeDef:
249
+ """
250
+ Attaches a policy to a root, an organizational unit (OU), or an individual
251
+ account.
252
+
253
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/client/attach_policy.html)
254
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#attach_policy)
255
+ """
256
+
257
+ def cancel_handshake(
258
+ self, **kwargs: Unpack[CancelHandshakeRequestRequestTypeDef]
259
+ ) -> CancelHandshakeResponseTypeDef:
260
+ """
261
+ Cancels a handshake.
262
+
263
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/client/cancel_handshake.html)
264
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#cancel_handshake)
265
+ """
266
+
267
+ def close_account(
268
+ self, **kwargs: Unpack[CloseAccountRequestRequestTypeDef]
269
+ ) -> EmptyResponseMetadataTypeDef:
270
+ """
271
+ Closes an Amazon Web Services member account within an organization.
272
+
273
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/client/close_account.html)
274
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#close_account)
275
+ """
276
+
277
+ def create_account(
278
+ self, **kwargs: Unpack[CreateAccountRequestRequestTypeDef]
279
+ ) -> CreateAccountResponseTypeDef:
280
+ """
281
+ Creates an Amazon Web Services account that is automatically a member of the
282
+ organization whose credentials made the request.
283
+
284
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/client/create_account.html)
285
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#create_account)
286
+ """
287
+
288
+ def create_gov_cloud_account(
289
+ self, **kwargs: Unpack[CreateGovCloudAccountRequestRequestTypeDef]
290
+ ) -> CreateGovCloudAccountResponseTypeDef:
291
+ """
292
+ This action is available if all of the following are true:.
293
+
294
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/client/create_gov_cloud_account.html)
295
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#create_gov_cloud_account)
296
+ """
297
+
298
+ def create_organization(
299
+ self, **kwargs: Unpack[CreateOrganizationRequestRequestTypeDef]
300
+ ) -> CreateOrganizationResponseTypeDef:
301
+ """
302
+ Creates an Amazon Web Services organization.
303
+
304
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/client/create_organization.html)
305
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#create_organization)
306
+ """
307
+
308
+ def create_organizational_unit(
309
+ self, **kwargs: Unpack[CreateOrganizationalUnitRequestRequestTypeDef]
310
+ ) -> CreateOrganizationalUnitResponseTypeDef:
311
+ """
312
+ Creates an organizational unit (OU) within a root or parent OU.
313
+
314
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/client/create_organizational_unit.html)
315
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#create_organizational_unit)
316
+ """
317
+
318
+ def create_policy(
319
+ self, **kwargs: Unpack[CreatePolicyRequestRequestTypeDef]
320
+ ) -> CreatePolicyResponseTypeDef:
321
+ """
322
+ Creates a policy of a specified type that you can attach to a root, an
323
+ organizational unit (OU), or an individual Amazon Web Services account.
324
+
325
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/client/create_policy.html)
326
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#create_policy)
327
+ """
328
+
329
+ def decline_handshake(
330
+ self, **kwargs: Unpack[DeclineHandshakeRequestRequestTypeDef]
331
+ ) -> DeclineHandshakeResponseTypeDef:
332
+ """
333
+ Declines a handshake request.
334
+
335
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/client/decline_handshake.html)
336
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#decline_handshake)
337
+ """
338
+
339
+ def delete_organization(self) -> EmptyResponseMetadataTypeDef:
340
+ """
341
+ Deletes the organization.
342
+
343
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/client/delete_organization.html)
344
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#delete_organization)
345
+ """
346
+
347
+ def delete_organizational_unit(
348
+ self, **kwargs: Unpack[DeleteOrganizationalUnitRequestRequestTypeDef]
349
+ ) -> EmptyResponseMetadataTypeDef:
350
+ """
351
+ Deletes an organizational unit (OU) from a root or another OU.
352
+
353
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/client/delete_organizational_unit.html)
354
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#delete_organizational_unit)
355
+ """
356
+
357
+ def delete_policy(
358
+ self, **kwargs: Unpack[DeletePolicyRequestRequestTypeDef]
359
+ ) -> EmptyResponseMetadataTypeDef:
360
+ """
361
+ Deletes the specified policy from your organization.
362
+
363
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/client/delete_policy.html)
364
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#delete_policy)
365
+ """
366
+
367
+ def delete_resource_policy(self) -> EmptyResponseMetadataTypeDef:
368
+ """
369
+ Deletes the resource policy from your organization.
370
+
371
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/client/delete_resource_policy.html)
372
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#delete_resource_policy)
373
+ """
374
+
375
+ def deregister_delegated_administrator(
376
+ self, **kwargs: Unpack[DeregisterDelegatedAdministratorRequestRequestTypeDef]
377
+ ) -> EmptyResponseMetadataTypeDef:
378
+ """
379
+ Removes the specified member Amazon Web Services account as a delegated
380
+ administrator for the specified Amazon Web Services service.
381
+
382
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/client/deregister_delegated_administrator.html)
383
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#deregister_delegated_administrator)
384
+ """
385
+
386
+ def describe_account(
387
+ self, **kwargs: Unpack[DescribeAccountRequestRequestTypeDef]
388
+ ) -> DescribeAccountResponseTypeDef:
389
+ """
390
+ Retrieves Organizations-related information about the specified account.
391
+
392
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/client/describe_account.html)
393
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#describe_account)
394
+ """
395
+
396
+ def describe_create_account_status(
397
+ self, **kwargs: Unpack[DescribeCreateAccountStatusRequestRequestTypeDef]
398
+ ) -> DescribeCreateAccountStatusResponseTypeDef:
399
+ """
400
+ Retrieves the current status of an asynchronous request to create an account.
401
+
402
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/client/describe_create_account_status.html)
403
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#describe_create_account_status)
404
+ """
405
+
406
+ def describe_effective_policy(
407
+ self, **kwargs: Unpack[DescribeEffectivePolicyRequestRequestTypeDef]
408
+ ) -> DescribeEffectivePolicyResponseTypeDef:
409
+ """
410
+ Returns the contents of the effective policy for specified policy type and
411
+ account.
412
+
413
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/client/describe_effective_policy.html)
414
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#describe_effective_policy)
415
+ """
416
+
417
+ def describe_handshake(
418
+ self, **kwargs: Unpack[DescribeHandshakeRequestRequestTypeDef]
419
+ ) -> DescribeHandshakeResponseTypeDef:
420
+ """
421
+ Retrieves information about a previously requested handshake.
422
+
423
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/client/describe_handshake.html)
424
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#describe_handshake)
425
+ """
426
+
427
+ def describe_organization(self) -> DescribeOrganizationResponseTypeDef:
428
+ """
429
+ Retrieves information about the organization that the user's account belongs to.
430
+
431
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/client/describe_organization.html)
432
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#describe_organization)
433
+ """
434
+
435
+ def describe_organizational_unit(
436
+ self, **kwargs: Unpack[DescribeOrganizationalUnitRequestRequestTypeDef]
437
+ ) -> DescribeOrganizationalUnitResponseTypeDef:
438
+ """
439
+ Retrieves information about an organizational unit (OU).
440
+
441
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/client/describe_organizational_unit.html)
442
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#describe_organizational_unit)
443
+ """
444
+
445
+ def describe_policy(
446
+ self, **kwargs: Unpack[DescribePolicyRequestRequestTypeDef]
447
+ ) -> DescribePolicyResponseTypeDef:
448
+ """
449
+ Retrieves information about a policy.
450
+
451
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/client/describe_policy.html)
452
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#describe_policy)
453
+ """
454
+
455
+ def describe_resource_policy(self) -> DescribeResourcePolicyResponseTypeDef:
456
+ """
457
+ Retrieves information about a resource policy.
458
+
459
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/client/describe_resource_policy.html)
460
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#describe_resource_policy)
461
+ """
462
+
463
+ def detach_policy(
464
+ self, **kwargs: Unpack[DetachPolicyRequestRequestTypeDef]
465
+ ) -> EmptyResponseMetadataTypeDef:
466
+ """
467
+ Detaches a policy from a target root, organizational unit (OU), or account.
468
+
469
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/client/detach_policy.html)
470
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#detach_policy)
471
+ """
472
+
473
+ def disable_aws_service_access(
474
+ self, **kwargs: Unpack[DisableAWSServiceAccessRequestRequestTypeDef]
475
+ ) -> EmptyResponseMetadataTypeDef:
476
+ """
477
+ Disables the integration of an Amazon Web Services service (the service that is
478
+ specified by <code>ServicePrincipal</code>) with Organizations.
479
+
480
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/client/disable_aws_service_access.html)
481
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#disable_aws_service_access)
482
+ """
483
+
484
+ def disable_policy_type(
485
+ self, **kwargs: Unpack[DisablePolicyTypeRequestRequestTypeDef]
486
+ ) -> DisablePolicyTypeResponseTypeDef:
487
+ """
488
+ Disables an organizational policy type in a root.
489
+
490
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/client/disable_policy_type.html)
491
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#disable_policy_type)
492
+ """
493
+
494
+ def enable_aws_service_access(
495
+ self, **kwargs: Unpack[EnableAWSServiceAccessRequestRequestTypeDef]
496
+ ) -> EmptyResponseMetadataTypeDef:
497
+ """
498
+ Provides an Amazon Web Services service (the service that is specified by
499
+ <code>ServicePrincipal</code>) with permissions to view the structure of an
500
+ organization, create a <a
501
+ href="https://docs.aws.amazon.com/IAM/latest/UserGuide/using-service-linked-roles.html">service-linked
502
+ role</a> in all th...
503
+
504
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/client/enable_aws_service_access.html)
505
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#enable_aws_service_access)
506
+ """
507
+
508
+ def enable_all_features(self) -> EnableAllFeaturesResponseTypeDef:
509
+ """
510
+ Enables all features in an organization.
511
+
512
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/client/enable_all_features.html)
513
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#enable_all_features)
514
+ """
515
+
516
+ def enable_policy_type(
517
+ self, **kwargs: Unpack[EnablePolicyTypeRequestRequestTypeDef]
518
+ ) -> EnablePolicyTypeResponseTypeDef:
519
+ """
520
+ Enables a policy type in a root.
521
+
522
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/client/enable_policy_type.html)
523
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#enable_policy_type)
524
+ """
525
+
526
+ def invite_account_to_organization(
527
+ self, **kwargs: Unpack[InviteAccountToOrganizationRequestRequestTypeDef]
528
+ ) -> InviteAccountToOrganizationResponseTypeDef:
529
+ """
530
+ Sends an invitation to another account to join your organization as a member
531
+ account.
532
+
533
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/client/invite_account_to_organization.html)
534
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#invite_account_to_organization)
535
+ """
536
+
537
+ def leave_organization(self) -> EmptyResponseMetadataTypeDef:
538
+ """
539
+ Removes a member account from its parent organization.
540
+
541
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/client/leave_organization.html)
542
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#leave_organization)
543
+ """
544
+
545
+ def list_aws_service_access_for_organization(
546
+ self, **kwargs: Unpack[ListAWSServiceAccessForOrganizationRequestRequestTypeDef]
547
+ ) -> ListAWSServiceAccessForOrganizationResponseTypeDef:
548
+ """
549
+ Returns a list of the Amazon Web Services services that you enabled to
550
+ integrate with your organization.
551
+
552
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/client/list_aws_service_access_for_organization.html)
553
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#list_aws_service_access_for_organization)
554
+ """
555
+
556
+ def list_accounts(
557
+ self, **kwargs: Unpack[ListAccountsRequestRequestTypeDef]
558
+ ) -> ListAccountsResponseTypeDef:
559
+ """
560
+ Lists all the accounts in the organization.
561
+
562
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/client/list_accounts.html)
563
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#list_accounts)
564
+ """
565
+
566
+ def list_accounts_for_parent(
567
+ self, **kwargs: Unpack[ListAccountsForParentRequestRequestTypeDef]
568
+ ) -> ListAccountsForParentResponseTypeDef:
569
+ """
570
+ Lists the accounts in an organization that are contained by the specified
571
+ target root or organizational unit (OU).
572
+
573
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/client/list_accounts_for_parent.html)
574
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#list_accounts_for_parent)
575
+ """
576
+
577
+ def list_children(
578
+ self, **kwargs: Unpack[ListChildrenRequestRequestTypeDef]
579
+ ) -> ListChildrenResponseTypeDef:
580
+ """
581
+ Lists all of the organizational units (OUs) or accounts that are contained in
582
+ the specified parent OU or root.
583
+
584
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/client/list_children.html)
585
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#list_children)
586
+ """
587
+
588
+ def list_create_account_status(
589
+ self, **kwargs: Unpack[ListCreateAccountStatusRequestRequestTypeDef]
590
+ ) -> ListCreateAccountStatusResponseTypeDef:
591
+ """
592
+ Lists the account creation requests that match the specified status that is
593
+ currently being tracked for the organization.
594
+
595
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/client/list_create_account_status.html)
596
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#list_create_account_status)
597
+ """
598
+
599
+ def list_delegated_administrators(
600
+ self, **kwargs: Unpack[ListDelegatedAdministratorsRequestRequestTypeDef]
601
+ ) -> ListDelegatedAdministratorsResponseTypeDef:
602
+ """
603
+ Lists the Amazon Web Services accounts that are designated as delegated
604
+ administrators in this organization.
605
+
606
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/client/list_delegated_administrators.html)
607
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#list_delegated_administrators)
608
+ """
609
+
610
+ def list_delegated_services_for_account(
611
+ self, **kwargs: Unpack[ListDelegatedServicesForAccountRequestRequestTypeDef]
612
+ ) -> ListDelegatedServicesForAccountResponseTypeDef:
613
+ """
614
+ List the Amazon Web Services services for which the specified account is a
615
+ delegated administrator.
616
+
617
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/client/list_delegated_services_for_account.html)
618
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#list_delegated_services_for_account)
619
+ """
620
+
621
+ def list_handshakes_for_account(
622
+ self, **kwargs: Unpack[ListHandshakesForAccountRequestRequestTypeDef]
623
+ ) -> ListHandshakesForAccountResponseTypeDef:
624
+ """
625
+ Lists the current handshakes that are associated with the account of the
626
+ requesting user.
627
+
628
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/client/list_handshakes_for_account.html)
629
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#list_handshakes_for_account)
630
+ """
631
+
632
+ def list_handshakes_for_organization(
633
+ self, **kwargs: Unpack[ListHandshakesForOrganizationRequestRequestTypeDef]
634
+ ) -> ListHandshakesForOrganizationResponseTypeDef:
635
+ """
636
+ Lists the handshakes that are associated with the organization that the
637
+ requesting user is part of.
638
+
639
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/client/list_handshakes_for_organization.html)
640
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#list_handshakes_for_organization)
641
+ """
642
+
643
+ def list_organizational_units_for_parent(
644
+ self, **kwargs: Unpack[ListOrganizationalUnitsForParentRequestRequestTypeDef]
645
+ ) -> ListOrganizationalUnitsForParentResponseTypeDef:
646
+ """
647
+ Lists the organizational units (OUs) in a parent organizational unit or root.
648
+
649
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/client/list_organizational_units_for_parent.html)
650
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#list_organizational_units_for_parent)
651
+ """
652
+
653
+ def list_parents(
654
+ self, **kwargs: Unpack[ListParentsRequestRequestTypeDef]
655
+ ) -> ListParentsResponseTypeDef:
656
+ """
657
+ Lists the root or organizational units (OUs) that serve as the immediate parent
658
+ of the specified child OU or account.
659
+
660
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/client/list_parents.html)
661
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#list_parents)
662
+ """
663
+
664
+ def list_policies(
665
+ self, **kwargs: Unpack[ListPoliciesRequestRequestTypeDef]
666
+ ) -> ListPoliciesResponseTypeDef:
667
+ """
668
+ Retrieves the list of all policies in an organization of a specified type.
669
+
670
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/client/list_policies.html)
671
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#list_policies)
672
+ """
673
+
674
+ def list_policies_for_target(
675
+ self, **kwargs: Unpack[ListPoliciesForTargetRequestRequestTypeDef]
676
+ ) -> ListPoliciesForTargetResponseTypeDef:
677
+ """
678
+ Lists the policies that are directly attached to the specified target root,
679
+ organizational unit (OU), or account.
680
+
681
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/client/list_policies_for_target.html)
682
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#list_policies_for_target)
683
+ """
684
+
685
+ def list_roots(
686
+ self, **kwargs: Unpack[ListRootsRequestRequestTypeDef]
687
+ ) -> ListRootsResponseTypeDef:
688
+ """
689
+ Lists the roots that are defined in the current organization.
690
+
691
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/client/list_roots.html)
692
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#list_roots)
693
+ """
694
+
695
+ def list_tags_for_resource(
696
+ self, **kwargs: Unpack[ListTagsForResourceRequestRequestTypeDef]
697
+ ) -> ListTagsForResourceResponseTypeDef:
698
+ """
699
+ Lists tags that are attached to the specified resource.
700
+
701
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/client/list_tags_for_resource.html)
702
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#list_tags_for_resource)
703
+ """
704
+
705
+ def list_targets_for_policy(
706
+ self, **kwargs: Unpack[ListTargetsForPolicyRequestRequestTypeDef]
707
+ ) -> ListTargetsForPolicyResponseTypeDef:
708
+ """
709
+ Lists all the roots, organizational units (OUs), and accounts that the
710
+ specified policy is attached to.
711
+
712
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/client/list_targets_for_policy.html)
713
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#list_targets_for_policy)
714
+ """
715
+
716
+ def move_account(
717
+ self, **kwargs: Unpack[MoveAccountRequestRequestTypeDef]
718
+ ) -> EmptyResponseMetadataTypeDef:
719
+ """
720
+ Moves an account from its current source parent root or organizational unit
721
+ (OU) to the specified destination parent root or OU.
722
+
723
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/client/move_account.html)
724
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#move_account)
725
+ """
726
+
727
+ def put_resource_policy(
728
+ self, **kwargs: Unpack[PutResourcePolicyRequestRequestTypeDef]
729
+ ) -> PutResourcePolicyResponseTypeDef:
730
+ """
731
+ Creates or updates a resource policy.
732
+
733
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/client/put_resource_policy.html)
734
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#put_resource_policy)
735
+ """
736
+
737
+ def register_delegated_administrator(
738
+ self, **kwargs: Unpack[RegisterDelegatedAdministratorRequestRequestTypeDef]
739
+ ) -> EmptyResponseMetadataTypeDef:
740
+ """
741
+ Enables the specified member account to administer the Organizations features
742
+ of the specified Amazon Web Services service.
743
+
744
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/client/register_delegated_administrator.html)
745
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#register_delegated_administrator)
746
+ """
747
+
748
+ def remove_account_from_organization(
749
+ self, **kwargs: Unpack[RemoveAccountFromOrganizationRequestRequestTypeDef]
750
+ ) -> EmptyResponseMetadataTypeDef:
751
+ """
752
+ Removes the specified account from the organization.
753
+
754
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/client/remove_account_from_organization.html)
755
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#remove_account_from_organization)
756
+ """
757
+
758
+ def tag_resource(
759
+ self, **kwargs: Unpack[TagResourceRequestRequestTypeDef]
760
+ ) -> EmptyResponseMetadataTypeDef:
761
+ """
762
+ Adds one or more tags to the specified resource.
763
+
764
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/client/tag_resource.html)
765
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#tag_resource)
766
+ """
767
+
768
+ def untag_resource(
769
+ self, **kwargs: Unpack[UntagResourceRequestRequestTypeDef]
770
+ ) -> EmptyResponseMetadataTypeDef:
771
+ """
772
+ Removes any tags with the specified keys from the specified resource.
773
+
774
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/client/untag_resource.html)
775
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#untag_resource)
776
+ """
777
+
778
+ def update_organizational_unit(
779
+ self, **kwargs: Unpack[UpdateOrganizationalUnitRequestRequestTypeDef]
780
+ ) -> UpdateOrganizationalUnitResponseTypeDef:
781
+ """
782
+ Renames the specified organizational unit (OU).
783
+
784
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/client/update_organizational_unit.html)
785
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#update_organizational_unit)
786
+ """
787
+
788
+ def update_policy(
789
+ self, **kwargs: Unpack[UpdatePolicyRequestRequestTypeDef]
790
+ ) -> UpdatePolicyResponseTypeDef:
791
+ """
792
+ Updates an existing policy with a new name, description, or content.
793
+
794
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/client/update_policy.html)
795
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#update_policy)
796
+ """
797
+
798
+ @overload # type: ignore[override]
799
+ def get_paginator( # type: ignore[override]
800
+ self, operation_name: Literal["list_aws_service_access_for_organization"]
801
+ ) -> ListAWSServiceAccessForOrganizationPaginator:
802
+ """
803
+ Create a paginator for an operation.
804
+
805
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/client/get_paginator.html)
806
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#get_paginator)
807
+ """
808
+
809
+ @overload # type: ignore[override]
810
+ def get_paginator( # type: ignore[override]
811
+ self, operation_name: Literal["list_accounts_for_parent"]
812
+ ) -> ListAccountsForParentPaginator:
813
+ """
814
+ Create a paginator for an operation.
815
+
816
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/client/get_paginator.html)
817
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#get_paginator)
818
+ """
819
+
820
+ @overload # type: ignore[override]
821
+ def get_paginator( # type: ignore[override]
822
+ self, operation_name: Literal["list_accounts"]
823
+ ) -> ListAccountsPaginator:
824
+ """
825
+ Create a paginator for an operation.
826
+
827
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/client/get_paginator.html)
828
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#get_paginator)
829
+ """
830
+
831
+ @overload # type: ignore[override]
832
+ def get_paginator( # type: ignore[override]
833
+ self, operation_name: Literal["list_children"]
834
+ ) -> ListChildrenPaginator:
835
+ """
836
+ Create a paginator for an operation.
837
+
838
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/client/get_paginator.html)
839
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#get_paginator)
840
+ """
841
+
842
+ @overload # type: ignore[override]
843
+ def get_paginator( # type: ignore[override]
844
+ self, operation_name: Literal["list_create_account_status"]
845
+ ) -> ListCreateAccountStatusPaginator:
846
+ """
847
+ Create a paginator for an operation.
848
+
849
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/client/get_paginator.html)
850
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#get_paginator)
851
+ """
852
+
853
+ @overload # type: ignore[override]
854
+ def get_paginator( # type: ignore[override]
855
+ self, operation_name: Literal["list_delegated_administrators"]
856
+ ) -> ListDelegatedAdministratorsPaginator:
857
+ """
858
+ Create a paginator for an operation.
859
+
860
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/client/get_paginator.html)
861
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#get_paginator)
862
+ """
863
+
864
+ @overload # type: ignore[override]
865
+ def get_paginator( # type: ignore[override]
866
+ self, operation_name: Literal["list_delegated_services_for_account"]
867
+ ) -> ListDelegatedServicesForAccountPaginator:
868
+ """
869
+ Create a paginator for an operation.
870
+
871
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/client/get_paginator.html)
872
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#get_paginator)
873
+ """
874
+
875
+ @overload # type: ignore[override]
876
+ def get_paginator( # type: ignore[override]
877
+ self, operation_name: Literal["list_handshakes_for_account"]
878
+ ) -> ListHandshakesForAccountPaginator:
879
+ """
880
+ Create a paginator for an operation.
881
+
882
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/client/get_paginator.html)
883
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#get_paginator)
884
+ """
885
+
886
+ @overload # type: ignore[override]
887
+ def get_paginator( # type: ignore[override]
888
+ self, operation_name: Literal["list_handshakes_for_organization"]
889
+ ) -> ListHandshakesForOrganizationPaginator:
890
+ """
891
+ Create a paginator for an operation.
892
+
893
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/client/get_paginator.html)
894
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#get_paginator)
895
+ """
896
+
897
+ @overload # type: ignore[override]
898
+ def get_paginator( # type: ignore[override]
899
+ self, operation_name: Literal["list_organizational_units_for_parent"]
900
+ ) -> ListOrganizationalUnitsForParentPaginator:
901
+ """
902
+ Create a paginator for an operation.
903
+
904
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/client/get_paginator.html)
905
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#get_paginator)
906
+ """
907
+
908
+ @overload # type: ignore[override]
909
+ def get_paginator( # type: ignore[override]
910
+ self, operation_name: Literal["list_parents"]
911
+ ) -> ListParentsPaginator:
912
+ """
913
+ Create a paginator for an operation.
914
+
915
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/client/get_paginator.html)
916
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#get_paginator)
917
+ """
918
+
919
+ @overload # type: ignore[override]
920
+ def get_paginator( # type: ignore[override]
921
+ self, operation_name: Literal["list_policies_for_target"]
922
+ ) -> ListPoliciesForTargetPaginator:
923
+ """
924
+ Create a paginator for an operation.
925
+
926
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/client/get_paginator.html)
927
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#get_paginator)
928
+ """
929
+
930
+ @overload # type: ignore[override]
931
+ def get_paginator( # type: ignore[override]
932
+ self, operation_name: Literal["list_policies"]
933
+ ) -> ListPoliciesPaginator:
934
+ """
935
+ Create a paginator for an operation.
936
+
937
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/client/get_paginator.html)
938
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#get_paginator)
939
+ """
940
+
941
+ @overload # type: ignore[override]
942
+ def get_paginator( # type: ignore[override]
943
+ self, operation_name: Literal["list_roots"]
944
+ ) -> ListRootsPaginator:
945
+ """
946
+ Create a paginator for an operation.
947
+
948
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/client/get_paginator.html)
949
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#get_paginator)
950
+ """
951
+
952
+ @overload # type: ignore[override]
953
+ def get_paginator( # type: ignore[override]
954
+ self, operation_name: Literal["list_tags_for_resource"]
955
+ ) -> ListTagsForResourcePaginator:
956
+ """
957
+ Create a paginator for an operation.
958
+
959
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/client/get_paginator.html)
960
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#get_paginator)
961
+ """
962
+
963
+ @overload # type: ignore[override]
964
+ def get_paginator( # type: ignore[override]
965
+ self, operation_name: Literal["list_targets_for_policy"]
966
+ ) -> ListTargetsForPolicyPaginator:
967
+ """
968
+ Create a paginator for an operation.
969
+
970
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/client/get_paginator.html)
971
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#get_paginator)
972
+ """