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