types-boto3-organizations 1.38.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,576 @@
1
+ """
2
+ Type annotations for organizations service literal definitions.
3
+
4
+ [Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/literals/)
5
+
6
+ Copyright 2025 Vlad Emelianov
7
+
8
+ Usage::
9
+
10
+ ```python
11
+ from types_boto3_organizations.literals import AccountJoinedMethodType
12
+
13
+ data: AccountJoinedMethodType = "CREATED"
14
+ ```
15
+ """
16
+
17
+ import sys
18
+
19
+ if sys.version_info >= (3, 12):
20
+ from typing import Literal
21
+ else:
22
+ from typing_extensions import Literal
23
+
24
+
25
+ __all__ = (
26
+ "AccountJoinedMethodType",
27
+ "AccountStatusType",
28
+ "ActionTypeType",
29
+ "ChildTypeType",
30
+ "CreateAccountFailureReasonType",
31
+ "CreateAccountStateType",
32
+ "EffectivePolicyTypeType",
33
+ "HandshakePartyTypeType",
34
+ "HandshakeResourceTypeType",
35
+ "HandshakeStateType",
36
+ "IAMUserAccessToBillingType",
37
+ "ListAWSServiceAccessForOrganizationPaginatorName",
38
+ "ListAccountsForParentPaginatorName",
39
+ "ListAccountsPaginatorName",
40
+ "ListChildrenPaginatorName",
41
+ "ListCreateAccountStatusPaginatorName",
42
+ "ListDelegatedAdministratorsPaginatorName",
43
+ "ListDelegatedServicesForAccountPaginatorName",
44
+ "ListHandshakesForAccountPaginatorName",
45
+ "ListHandshakesForOrganizationPaginatorName",
46
+ "ListOrganizationalUnitsForParentPaginatorName",
47
+ "ListParentsPaginatorName",
48
+ "ListPoliciesForTargetPaginatorName",
49
+ "ListPoliciesPaginatorName",
50
+ "ListRootsPaginatorName",
51
+ "ListTagsForResourcePaginatorName",
52
+ "ListTargetsForPolicyPaginatorName",
53
+ "OrganizationFeatureSetType",
54
+ "OrganizationsServiceName",
55
+ "PaginatorName",
56
+ "ParentTypeType",
57
+ "PolicyTypeStatusType",
58
+ "PolicyTypeType",
59
+ "ResourceServiceName",
60
+ "ServiceName",
61
+ "TargetTypeType",
62
+ )
63
+
64
+
65
+ AccountJoinedMethodType = Literal["CREATED", "INVITED"]
66
+ AccountStatusType = Literal["ACTIVE", "PENDING_CLOSURE", "SUSPENDED"]
67
+ ActionTypeType = Literal[
68
+ "ADD_ORGANIZATIONS_SERVICE_LINKED_ROLE", "APPROVE_ALL_FEATURES", "ENABLE_ALL_FEATURES", "INVITE"
69
+ ]
70
+ ChildTypeType = Literal["ACCOUNT", "ORGANIZATIONAL_UNIT"]
71
+ CreateAccountFailureReasonType = Literal[
72
+ "ACCOUNT_LIMIT_EXCEEDED",
73
+ "CONCURRENT_ACCOUNT_MODIFICATION",
74
+ "EMAIL_ALREADY_EXISTS",
75
+ "FAILED_BUSINESS_VALIDATION",
76
+ "GOVCLOUD_ACCOUNT_ALREADY_EXISTS",
77
+ "INTERNAL_FAILURE",
78
+ "INVALID_ADDRESS",
79
+ "INVALID_EMAIL",
80
+ "INVALID_IDENTITY_FOR_BUSINESS_VALIDATION",
81
+ "INVALID_PAYMENT_INSTRUMENT",
82
+ "MISSING_BUSINESS_VALIDATION",
83
+ "MISSING_PAYMENT_INSTRUMENT",
84
+ "PENDING_BUSINESS_VALIDATION",
85
+ "UNKNOWN_BUSINESS_VALIDATION",
86
+ "UPDATE_EXISTING_RESOURCE_POLICY_WITH_TAGS_NOT_SUPPORTED",
87
+ ]
88
+ CreateAccountStateType = Literal["FAILED", "IN_PROGRESS", "SUCCEEDED"]
89
+ EffectivePolicyTypeType = Literal[
90
+ "AISERVICES_OPT_OUT_POLICY",
91
+ "BACKUP_POLICY",
92
+ "CHATBOT_POLICY",
93
+ "DECLARATIVE_POLICY_EC2",
94
+ "TAG_POLICY",
95
+ ]
96
+ HandshakePartyTypeType = Literal["ACCOUNT", "EMAIL", "ORGANIZATION"]
97
+ HandshakeResourceTypeType = Literal[
98
+ "ACCOUNT",
99
+ "EMAIL",
100
+ "MASTER_EMAIL",
101
+ "MASTER_NAME",
102
+ "NOTES",
103
+ "ORGANIZATION",
104
+ "ORGANIZATION_FEATURE_SET",
105
+ "PARENT_HANDSHAKE",
106
+ ]
107
+ HandshakeStateType = Literal["ACCEPTED", "CANCELED", "DECLINED", "EXPIRED", "OPEN", "REQUESTED"]
108
+ IAMUserAccessToBillingType = Literal["ALLOW", "DENY"]
109
+ ListAWSServiceAccessForOrganizationPaginatorName = Literal[
110
+ "list_aws_service_access_for_organization"
111
+ ]
112
+ ListAccountsForParentPaginatorName = Literal["list_accounts_for_parent"]
113
+ ListAccountsPaginatorName = Literal["list_accounts"]
114
+ ListChildrenPaginatorName = Literal["list_children"]
115
+ ListCreateAccountStatusPaginatorName = Literal["list_create_account_status"]
116
+ ListDelegatedAdministratorsPaginatorName = Literal["list_delegated_administrators"]
117
+ ListDelegatedServicesForAccountPaginatorName = Literal["list_delegated_services_for_account"]
118
+ ListHandshakesForAccountPaginatorName = Literal["list_handshakes_for_account"]
119
+ ListHandshakesForOrganizationPaginatorName = Literal["list_handshakes_for_organization"]
120
+ ListOrganizationalUnitsForParentPaginatorName = Literal["list_organizational_units_for_parent"]
121
+ ListParentsPaginatorName = Literal["list_parents"]
122
+ ListPoliciesForTargetPaginatorName = Literal["list_policies_for_target"]
123
+ ListPoliciesPaginatorName = Literal["list_policies"]
124
+ ListRootsPaginatorName = Literal["list_roots"]
125
+ ListTagsForResourcePaginatorName = Literal["list_tags_for_resource"]
126
+ ListTargetsForPolicyPaginatorName = Literal["list_targets_for_policy"]
127
+ OrganizationFeatureSetType = Literal["ALL", "CONSOLIDATED_BILLING"]
128
+ ParentTypeType = Literal["ORGANIZATIONAL_UNIT", "ROOT"]
129
+ PolicyTypeStatusType = Literal["ENABLED", "PENDING_DISABLE", "PENDING_ENABLE"]
130
+ PolicyTypeType = Literal[
131
+ "AISERVICES_OPT_OUT_POLICY",
132
+ "BACKUP_POLICY",
133
+ "CHATBOT_POLICY",
134
+ "DECLARATIVE_POLICY_EC2",
135
+ "RESOURCE_CONTROL_POLICY",
136
+ "SERVICE_CONTROL_POLICY",
137
+ "TAG_POLICY",
138
+ ]
139
+ TargetTypeType = Literal["ACCOUNT", "ORGANIZATIONAL_UNIT", "ROOT"]
140
+ OrganizationsServiceName = Literal["organizations"]
141
+ ServiceName = Literal[
142
+ "accessanalyzer",
143
+ "account",
144
+ "acm",
145
+ "acm-pca",
146
+ "amp",
147
+ "amplify",
148
+ "amplifybackend",
149
+ "amplifyuibuilder",
150
+ "apigateway",
151
+ "apigatewaymanagementapi",
152
+ "apigatewayv2",
153
+ "appconfig",
154
+ "appconfigdata",
155
+ "appfabric",
156
+ "appflow",
157
+ "appintegrations",
158
+ "application-autoscaling",
159
+ "application-insights",
160
+ "application-signals",
161
+ "applicationcostprofiler",
162
+ "appmesh",
163
+ "apprunner",
164
+ "appstream",
165
+ "appsync",
166
+ "apptest",
167
+ "arc-zonal-shift",
168
+ "artifact",
169
+ "athena",
170
+ "auditmanager",
171
+ "autoscaling",
172
+ "autoscaling-plans",
173
+ "b2bi",
174
+ "backup",
175
+ "backup-gateway",
176
+ "backupsearch",
177
+ "batch",
178
+ "bcm-data-exports",
179
+ "bcm-pricing-calculator",
180
+ "bedrock",
181
+ "bedrock-agent",
182
+ "bedrock-agent-runtime",
183
+ "bedrock-data-automation",
184
+ "bedrock-data-automation-runtime",
185
+ "bedrock-runtime",
186
+ "billing",
187
+ "billingconductor",
188
+ "braket",
189
+ "budgets",
190
+ "ce",
191
+ "chatbot",
192
+ "chime",
193
+ "chime-sdk-identity",
194
+ "chime-sdk-media-pipelines",
195
+ "chime-sdk-meetings",
196
+ "chime-sdk-messaging",
197
+ "chime-sdk-voice",
198
+ "cleanrooms",
199
+ "cleanroomsml",
200
+ "cloud9",
201
+ "cloudcontrol",
202
+ "clouddirectory",
203
+ "cloudformation",
204
+ "cloudfront",
205
+ "cloudfront-keyvaluestore",
206
+ "cloudhsm",
207
+ "cloudhsmv2",
208
+ "cloudsearch",
209
+ "cloudsearchdomain",
210
+ "cloudtrail",
211
+ "cloudtrail-data",
212
+ "cloudwatch",
213
+ "codeartifact",
214
+ "codebuild",
215
+ "codecatalyst",
216
+ "codecommit",
217
+ "codeconnections",
218
+ "codedeploy",
219
+ "codeguru-reviewer",
220
+ "codeguru-security",
221
+ "codeguruprofiler",
222
+ "codepipeline",
223
+ "codestar-connections",
224
+ "codestar-notifications",
225
+ "cognito-identity",
226
+ "cognito-idp",
227
+ "cognito-sync",
228
+ "comprehend",
229
+ "comprehendmedical",
230
+ "compute-optimizer",
231
+ "config",
232
+ "connect",
233
+ "connect-contact-lens",
234
+ "connectcampaigns",
235
+ "connectcampaignsv2",
236
+ "connectcases",
237
+ "connectparticipant",
238
+ "controlcatalog",
239
+ "controltower",
240
+ "cost-optimization-hub",
241
+ "cur",
242
+ "customer-profiles",
243
+ "databrew",
244
+ "dataexchange",
245
+ "datapipeline",
246
+ "datasync",
247
+ "datazone",
248
+ "dax",
249
+ "deadline",
250
+ "detective",
251
+ "devicefarm",
252
+ "devops-guru",
253
+ "directconnect",
254
+ "discovery",
255
+ "dlm",
256
+ "dms",
257
+ "docdb",
258
+ "docdb-elastic",
259
+ "drs",
260
+ "ds",
261
+ "ds-data",
262
+ "dsql",
263
+ "dynamodb",
264
+ "dynamodbstreams",
265
+ "ebs",
266
+ "ec2",
267
+ "ec2-instance-connect",
268
+ "ecr",
269
+ "ecr-public",
270
+ "ecs",
271
+ "efs",
272
+ "eks",
273
+ "eks-auth",
274
+ "elasticache",
275
+ "elasticbeanstalk",
276
+ "elastictranscoder",
277
+ "elb",
278
+ "elbv2",
279
+ "emr",
280
+ "emr-containers",
281
+ "emr-serverless",
282
+ "entityresolution",
283
+ "es",
284
+ "events",
285
+ "evidently",
286
+ "finspace",
287
+ "finspace-data",
288
+ "firehose",
289
+ "fis",
290
+ "fms",
291
+ "forecast",
292
+ "forecastquery",
293
+ "frauddetector",
294
+ "freetier",
295
+ "fsx",
296
+ "gamelift",
297
+ "gameliftstreams",
298
+ "geo-maps",
299
+ "geo-places",
300
+ "geo-routes",
301
+ "glacier",
302
+ "globalaccelerator",
303
+ "glue",
304
+ "grafana",
305
+ "greengrass",
306
+ "greengrassv2",
307
+ "groundstation",
308
+ "guardduty",
309
+ "health",
310
+ "healthlake",
311
+ "iam",
312
+ "identitystore",
313
+ "imagebuilder",
314
+ "importexport",
315
+ "inspector",
316
+ "inspector-scan",
317
+ "inspector2",
318
+ "internetmonitor",
319
+ "invoicing",
320
+ "iot",
321
+ "iot-data",
322
+ "iot-jobs-data",
323
+ "iot-managed-integrations",
324
+ "iotanalytics",
325
+ "iotdeviceadvisor",
326
+ "iotevents",
327
+ "iotevents-data",
328
+ "iotfleethub",
329
+ "iotfleetwise",
330
+ "iotsecuretunneling",
331
+ "iotsitewise",
332
+ "iotthingsgraph",
333
+ "iottwinmaker",
334
+ "iotwireless",
335
+ "ivs",
336
+ "ivs-realtime",
337
+ "ivschat",
338
+ "kafka",
339
+ "kafkaconnect",
340
+ "kendra",
341
+ "kendra-ranking",
342
+ "keyspaces",
343
+ "kinesis",
344
+ "kinesis-video-archived-media",
345
+ "kinesis-video-media",
346
+ "kinesis-video-signaling",
347
+ "kinesis-video-webrtc-storage",
348
+ "kinesisanalytics",
349
+ "kinesisanalyticsv2",
350
+ "kinesisvideo",
351
+ "kms",
352
+ "lakeformation",
353
+ "lambda",
354
+ "launch-wizard",
355
+ "lex-models",
356
+ "lex-runtime",
357
+ "lexv2-models",
358
+ "lexv2-runtime",
359
+ "license-manager",
360
+ "license-manager-linux-subscriptions",
361
+ "license-manager-user-subscriptions",
362
+ "lightsail",
363
+ "location",
364
+ "logs",
365
+ "lookoutequipment",
366
+ "lookoutmetrics",
367
+ "lookoutvision",
368
+ "m2",
369
+ "machinelearning",
370
+ "macie2",
371
+ "mailmanager",
372
+ "managedblockchain",
373
+ "managedblockchain-query",
374
+ "marketplace-agreement",
375
+ "marketplace-catalog",
376
+ "marketplace-deployment",
377
+ "marketplace-entitlement",
378
+ "marketplace-reporting",
379
+ "marketplacecommerceanalytics",
380
+ "mediaconnect",
381
+ "mediaconvert",
382
+ "medialive",
383
+ "mediapackage",
384
+ "mediapackage-vod",
385
+ "mediapackagev2",
386
+ "mediastore",
387
+ "mediastore-data",
388
+ "mediatailor",
389
+ "medical-imaging",
390
+ "memorydb",
391
+ "meteringmarketplace",
392
+ "mgh",
393
+ "mgn",
394
+ "migration-hub-refactor-spaces",
395
+ "migrationhub-config",
396
+ "migrationhuborchestrator",
397
+ "migrationhubstrategy",
398
+ "mq",
399
+ "mturk",
400
+ "mwaa",
401
+ "neptune",
402
+ "neptune-graph",
403
+ "neptunedata",
404
+ "network-firewall",
405
+ "networkflowmonitor",
406
+ "networkmanager",
407
+ "networkmonitor",
408
+ "notifications",
409
+ "notificationscontacts",
410
+ "oam",
411
+ "observabilityadmin",
412
+ "omics",
413
+ "opensearch",
414
+ "opensearchserverless",
415
+ "opsworks",
416
+ "opsworkscm",
417
+ "organizations",
418
+ "osis",
419
+ "outposts",
420
+ "panorama",
421
+ "partnercentral-selling",
422
+ "payment-cryptography",
423
+ "payment-cryptography-data",
424
+ "pca-connector-ad",
425
+ "pca-connector-scep",
426
+ "pcs",
427
+ "personalize",
428
+ "personalize-events",
429
+ "personalize-runtime",
430
+ "pi",
431
+ "pinpoint",
432
+ "pinpoint-email",
433
+ "pinpoint-sms-voice",
434
+ "pinpoint-sms-voice-v2",
435
+ "pipes",
436
+ "polly",
437
+ "pricing",
438
+ "privatenetworks",
439
+ "proton",
440
+ "qapps",
441
+ "qbusiness",
442
+ "qconnect",
443
+ "qldb",
444
+ "qldb-session",
445
+ "quicksight",
446
+ "ram",
447
+ "rbin",
448
+ "rds",
449
+ "rds-data",
450
+ "redshift",
451
+ "redshift-data",
452
+ "redshift-serverless",
453
+ "rekognition",
454
+ "repostspace",
455
+ "resiliencehub",
456
+ "resource-explorer-2",
457
+ "resource-groups",
458
+ "resourcegroupstaggingapi",
459
+ "robomaker",
460
+ "rolesanywhere",
461
+ "route53",
462
+ "route53-recovery-cluster",
463
+ "route53-recovery-control-config",
464
+ "route53-recovery-readiness",
465
+ "route53domains",
466
+ "route53profiles",
467
+ "route53resolver",
468
+ "rum",
469
+ "s3",
470
+ "s3control",
471
+ "s3outposts",
472
+ "s3tables",
473
+ "sagemaker",
474
+ "sagemaker-a2i-runtime",
475
+ "sagemaker-edge",
476
+ "sagemaker-featurestore-runtime",
477
+ "sagemaker-geospatial",
478
+ "sagemaker-metrics",
479
+ "sagemaker-runtime",
480
+ "savingsplans",
481
+ "scheduler",
482
+ "schemas",
483
+ "sdb",
484
+ "secretsmanager",
485
+ "security-ir",
486
+ "securityhub",
487
+ "securitylake",
488
+ "serverlessrepo",
489
+ "service-quotas",
490
+ "servicecatalog",
491
+ "servicecatalog-appregistry",
492
+ "servicediscovery",
493
+ "ses",
494
+ "sesv2",
495
+ "shield",
496
+ "signer",
497
+ "simspaceweaver",
498
+ "sms",
499
+ "sms-voice",
500
+ "snow-device-management",
501
+ "snowball",
502
+ "sns",
503
+ "socialmessaging",
504
+ "sqs",
505
+ "ssm",
506
+ "ssm-contacts",
507
+ "ssm-incidents",
508
+ "ssm-quicksetup",
509
+ "ssm-sap",
510
+ "sso",
511
+ "sso-admin",
512
+ "sso-oidc",
513
+ "stepfunctions",
514
+ "storagegateway",
515
+ "sts",
516
+ "supplychain",
517
+ "support",
518
+ "support-app",
519
+ "swf",
520
+ "synthetics",
521
+ "taxsettings",
522
+ "textract",
523
+ "timestream-influxdb",
524
+ "timestream-query",
525
+ "timestream-write",
526
+ "tnb",
527
+ "transcribe",
528
+ "transfer",
529
+ "translate",
530
+ "trustedadvisor",
531
+ "verifiedpermissions",
532
+ "voice-id",
533
+ "vpc-lattice",
534
+ "waf",
535
+ "waf-regional",
536
+ "wafv2",
537
+ "wellarchitected",
538
+ "wisdom",
539
+ "workdocs",
540
+ "workmail",
541
+ "workmailmessageflow",
542
+ "workspaces",
543
+ "workspaces-thin-client",
544
+ "workspaces-web",
545
+ "xray",
546
+ ]
547
+ ResourceServiceName = Literal[
548
+ "cloudformation",
549
+ "cloudwatch",
550
+ "dynamodb",
551
+ "ec2",
552
+ "glacier",
553
+ "iam",
554
+ "opsworks",
555
+ "s3",
556
+ "sns",
557
+ "sqs",
558
+ ]
559
+ PaginatorName = Literal[
560
+ "list_accounts",
561
+ "list_accounts_for_parent",
562
+ "list_aws_service_access_for_organization",
563
+ "list_children",
564
+ "list_create_account_status",
565
+ "list_delegated_administrators",
566
+ "list_delegated_services_for_account",
567
+ "list_handshakes_for_account",
568
+ "list_handshakes_for_organization",
569
+ "list_organizational_units_for_parent",
570
+ "list_parents",
571
+ "list_policies",
572
+ "list_policies_for_target",
573
+ "list_roots",
574
+ "list_tags_for_resource",
575
+ "list_targets_for_policy",
576
+ ]