types-boto3-eks 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,785 @@
1
+ """
2
+ Type annotations for eks service literal definitions.
3
+
4
+ [Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/literals/)
5
+
6
+ Usage::
7
+
8
+ ```python
9
+ from types_boto3_eks.literals import AMITypesType
10
+
11
+ data: AMITypesType = "AL2023_ARM_64_STANDARD"
12
+ ```
13
+
14
+ Copyright 2025 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
+
25
+ __all__ = (
26
+ "AMITypesType",
27
+ "AccessScopeTypeType",
28
+ "AddonActiveWaiterName",
29
+ "AddonDeletedWaiterName",
30
+ "AddonIssueCodeType",
31
+ "AddonStatusType",
32
+ "AuthenticationModeType",
33
+ "CapacityTypesType",
34
+ "CategoryType",
35
+ "ClusterActiveWaiterName",
36
+ "ClusterDeletedWaiterName",
37
+ "ClusterIssueCodeType",
38
+ "ClusterStatusType",
39
+ "ClusterVersionStatusType",
40
+ "ConfigStatusType",
41
+ "ConnectorConfigProviderType",
42
+ "DescribeAddonVersionsPaginatorName",
43
+ "DescribeClusterVersionsPaginatorName",
44
+ "EKSServiceName",
45
+ "EksAnywhereSubscriptionLicenseTypeType",
46
+ "EksAnywhereSubscriptionStatusType",
47
+ "EksAnywhereSubscriptionTermUnitType",
48
+ "ErrorCodeType",
49
+ "FargateProfileActiveWaiterName",
50
+ "FargateProfileDeletedWaiterName",
51
+ "FargateProfileIssueCodeType",
52
+ "FargateProfileStatusType",
53
+ "InsightStatusValueType",
54
+ "IpFamilyType",
55
+ "ListAccessEntriesPaginatorName",
56
+ "ListAccessPoliciesPaginatorName",
57
+ "ListAddonsPaginatorName",
58
+ "ListAssociatedAccessPoliciesPaginatorName",
59
+ "ListClustersPaginatorName",
60
+ "ListEksAnywhereSubscriptionsPaginatorName",
61
+ "ListFargateProfilesPaginatorName",
62
+ "ListIdentityProviderConfigsPaginatorName",
63
+ "ListInsightsPaginatorName",
64
+ "ListNodegroupsPaginatorName",
65
+ "ListPodIdentityAssociationsPaginatorName",
66
+ "ListUpdatesPaginatorName",
67
+ "LogTypeType",
68
+ "NodegroupActiveWaiterName",
69
+ "NodegroupDeletedWaiterName",
70
+ "NodegroupIssueCodeType",
71
+ "NodegroupStatusType",
72
+ "PaginatorName",
73
+ "RegionName",
74
+ "ResolveConflictsType",
75
+ "ResourceServiceName",
76
+ "ServiceName",
77
+ "SupportTypeType",
78
+ "TaintEffectType",
79
+ "UpdateParamTypeType",
80
+ "UpdateStatusType",
81
+ "UpdateTypeType",
82
+ "WaiterName",
83
+ )
84
+
85
+
86
+ AMITypesType = Literal[
87
+ "AL2023_ARM_64_STANDARD",
88
+ "AL2023_x86_64_NEURON",
89
+ "AL2023_x86_64_NVIDIA",
90
+ "AL2023_x86_64_STANDARD",
91
+ "AL2_ARM_64",
92
+ "AL2_x86_64",
93
+ "AL2_x86_64_GPU",
94
+ "BOTTLEROCKET_ARM_64",
95
+ "BOTTLEROCKET_ARM_64_NVIDIA",
96
+ "BOTTLEROCKET_x86_64",
97
+ "BOTTLEROCKET_x86_64_NVIDIA",
98
+ "CUSTOM",
99
+ "WINDOWS_CORE_2019_x86_64",
100
+ "WINDOWS_CORE_2022_x86_64",
101
+ "WINDOWS_FULL_2019_x86_64",
102
+ "WINDOWS_FULL_2022_x86_64",
103
+ ]
104
+ AccessScopeTypeType = Literal["cluster", "namespace"]
105
+ AddonActiveWaiterName = Literal["addon_active"]
106
+ AddonDeletedWaiterName = Literal["addon_deleted"]
107
+ AddonIssueCodeType = Literal[
108
+ "AccessDenied",
109
+ "AddonPermissionFailure",
110
+ "AddonSubscriptionNeeded",
111
+ "AdmissionRequestDenied",
112
+ "ClusterUnreachable",
113
+ "ConfigurationConflict",
114
+ "InsufficientNumberOfReplicas",
115
+ "InternalFailure",
116
+ "K8sResourceNotFound",
117
+ "UnsupportedAddonModification",
118
+ ]
119
+ AddonStatusType = Literal[
120
+ "ACTIVE",
121
+ "CREATE_FAILED",
122
+ "CREATING",
123
+ "DEGRADED",
124
+ "DELETE_FAILED",
125
+ "DELETING",
126
+ "UPDATE_FAILED",
127
+ "UPDATING",
128
+ ]
129
+ AuthenticationModeType = Literal["API", "API_AND_CONFIG_MAP", "CONFIG_MAP"]
130
+ CapacityTypesType = Literal["CAPACITY_BLOCK", "ON_DEMAND", "SPOT"]
131
+ CategoryType = Literal["UPGRADE_READINESS"]
132
+ ClusterActiveWaiterName = Literal["cluster_active"]
133
+ ClusterDeletedWaiterName = Literal["cluster_deleted"]
134
+ ClusterIssueCodeType = Literal[
135
+ "AccessDenied",
136
+ "ClusterUnreachable",
137
+ "ConfigurationConflict",
138
+ "Ec2SecurityGroupNotFound",
139
+ "Ec2ServiceNotSubscribed",
140
+ "Ec2SubnetNotFound",
141
+ "IamRoleNotFound",
142
+ "InsufficientFreeAddresses",
143
+ "InternalFailure",
144
+ "KmsGrantRevoked",
145
+ "KmsKeyDisabled",
146
+ "KmsKeyMarkedForDeletion",
147
+ "KmsKeyNotFound",
148
+ "Other",
149
+ "ResourceLimitExceeded",
150
+ "ResourceNotFound",
151
+ "StsRegionalEndpointDisabled",
152
+ "UnsupportedVersion",
153
+ "VpcNotFound",
154
+ ]
155
+ ClusterStatusType = Literal["ACTIVE", "CREATING", "DELETING", "FAILED", "PENDING", "UPDATING"]
156
+ ClusterVersionStatusType = Literal["extended-support", "standard-support", "unsupported"]
157
+ ConfigStatusType = Literal["ACTIVE", "CREATING", "DELETING"]
158
+ ConnectorConfigProviderType = Literal[
159
+ "AKS", "ANTHOS", "EC2", "EKS_ANYWHERE", "GKE", "OPENSHIFT", "OTHER", "RANCHER", "TANZU"
160
+ ]
161
+ DescribeAddonVersionsPaginatorName = Literal["describe_addon_versions"]
162
+ DescribeClusterVersionsPaginatorName = Literal["describe_cluster_versions"]
163
+ EksAnywhereSubscriptionLicenseTypeType = Literal["Cluster"]
164
+ EksAnywhereSubscriptionStatusType = Literal[
165
+ "ACTIVE", "CREATING", "DELETING", "EXPIRED", "EXPIRING", "UPDATING"
166
+ ]
167
+ EksAnywhereSubscriptionTermUnitType = Literal["MONTHS"]
168
+ ErrorCodeType = Literal[
169
+ "AccessDenied",
170
+ "AdmissionRequestDenied",
171
+ "ClusterUnreachable",
172
+ "ConfigurationConflict",
173
+ "EniLimitReached",
174
+ "InsufficientFreeAddresses",
175
+ "InsufficientNumberOfReplicas",
176
+ "IpNotAvailable",
177
+ "K8sResourceNotFound",
178
+ "NodeCreationFailure",
179
+ "OperationNotPermitted",
180
+ "PodEvictionFailure",
181
+ "SecurityGroupNotFound",
182
+ "SubnetNotFound",
183
+ "Unknown",
184
+ "UnsupportedAddonModification",
185
+ "VpcIdNotFound",
186
+ ]
187
+ FargateProfileActiveWaiterName = Literal["fargate_profile_active"]
188
+ FargateProfileDeletedWaiterName = Literal["fargate_profile_deleted"]
189
+ FargateProfileIssueCodeType = Literal[
190
+ "AccessDenied", "ClusterUnreachable", "InternalFailure", "PodExecutionRoleAlreadyInUse"
191
+ ]
192
+ FargateProfileStatusType = Literal[
193
+ "ACTIVE", "CREATE_FAILED", "CREATING", "DELETE_FAILED", "DELETING"
194
+ ]
195
+ InsightStatusValueType = Literal["ERROR", "PASSING", "UNKNOWN", "WARNING"]
196
+ IpFamilyType = Literal["ipv4", "ipv6"]
197
+ ListAccessEntriesPaginatorName = Literal["list_access_entries"]
198
+ ListAccessPoliciesPaginatorName = Literal["list_access_policies"]
199
+ ListAddonsPaginatorName = Literal["list_addons"]
200
+ ListAssociatedAccessPoliciesPaginatorName = Literal["list_associated_access_policies"]
201
+ ListClustersPaginatorName = Literal["list_clusters"]
202
+ ListEksAnywhereSubscriptionsPaginatorName = Literal["list_eks_anywhere_subscriptions"]
203
+ ListFargateProfilesPaginatorName = Literal["list_fargate_profiles"]
204
+ ListIdentityProviderConfigsPaginatorName = Literal["list_identity_provider_configs"]
205
+ ListInsightsPaginatorName = Literal["list_insights"]
206
+ ListNodegroupsPaginatorName = Literal["list_nodegroups"]
207
+ ListPodIdentityAssociationsPaginatorName = Literal["list_pod_identity_associations"]
208
+ ListUpdatesPaginatorName = Literal["list_updates"]
209
+ LogTypeType = Literal["api", "audit", "authenticator", "controllerManager", "scheduler"]
210
+ NodegroupActiveWaiterName = Literal["nodegroup_active"]
211
+ NodegroupDeletedWaiterName = Literal["nodegroup_deleted"]
212
+ NodegroupIssueCodeType = Literal[
213
+ "AccessDenied",
214
+ "AmiIdNotFound",
215
+ "AsgInstanceLaunchFailures",
216
+ "AutoScalingGroupInstanceRefreshActive",
217
+ "AutoScalingGroupInvalidConfiguration",
218
+ "AutoScalingGroupNotFound",
219
+ "AutoScalingGroupOptInRequired",
220
+ "AutoScalingGroupRateLimitExceeded",
221
+ "ClusterUnreachable",
222
+ "Ec2InstanceTypeDoesNotExist",
223
+ "Ec2LaunchTemplateDeletionFailure",
224
+ "Ec2LaunchTemplateInvalidConfiguration",
225
+ "Ec2LaunchTemplateMaxLimitExceeded",
226
+ "Ec2LaunchTemplateNotFound",
227
+ "Ec2LaunchTemplateVersionMaxLimitExceeded",
228
+ "Ec2LaunchTemplateVersionMismatch",
229
+ "Ec2SecurityGroupDeletionFailure",
230
+ "Ec2SecurityGroupNotFound",
231
+ "Ec2SubnetInvalidConfiguration",
232
+ "Ec2SubnetListTooLong",
233
+ "Ec2SubnetMissingIpv6Assignment",
234
+ "Ec2SubnetNotFound",
235
+ "IamInstanceProfileNotFound",
236
+ "IamLimitExceeded",
237
+ "IamNodeRoleNotFound",
238
+ "IamThrottling",
239
+ "InstanceLimitExceeded",
240
+ "InsufficientFreeAddresses",
241
+ "InternalFailure",
242
+ "KubernetesLabelInvalid",
243
+ "LimitExceeded",
244
+ "NodeCreationFailure",
245
+ "NodeTerminationFailure",
246
+ "PodEvictionFailure",
247
+ "SourceEc2LaunchTemplateNotFound",
248
+ "Unknown",
249
+ ]
250
+ NodegroupStatusType = Literal[
251
+ "ACTIVE", "CREATE_FAILED", "CREATING", "DEGRADED", "DELETE_FAILED", "DELETING", "UPDATING"
252
+ ]
253
+ ResolveConflictsType = Literal["NONE", "OVERWRITE", "PRESERVE"]
254
+ SupportTypeType = Literal["EXTENDED", "STANDARD"]
255
+ TaintEffectType = Literal["NO_EXECUTE", "NO_SCHEDULE", "PREFER_NO_SCHEDULE"]
256
+ UpdateParamTypeType = Literal[
257
+ "AddonVersion",
258
+ "AuthenticationMode",
259
+ "ClusterLogging",
260
+ "ComputeConfig",
261
+ "ConfigurationValues",
262
+ "DesiredSize",
263
+ "EncryptionConfig",
264
+ "EndpointPrivateAccess",
265
+ "EndpointPublicAccess",
266
+ "IdentityProviderConfig",
267
+ "KubernetesNetworkConfig",
268
+ "LabelsToAdd",
269
+ "LabelsToRemove",
270
+ "LaunchTemplateName",
271
+ "LaunchTemplateVersion",
272
+ "MaxSize",
273
+ "MaxUnavailable",
274
+ "MaxUnavailablePercentage",
275
+ "MinSize",
276
+ "NodeRepairEnabled",
277
+ "PlatformVersion",
278
+ "PodIdentityAssociations",
279
+ "PublicAccessCidrs",
280
+ "ReleaseVersion",
281
+ "ResolveConflicts",
282
+ "SecurityGroups",
283
+ "ServiceAccountRoleArn",
284
+ "StorageConfig",
285
+ "Subnets",
286
+ "TaintsToAdd",
287
+ "TaintsToRemove",
288
+ "UpgradePolicy",
289
+ "Version",
290
+ "ZonalShiftConfig",
291
+ ]
292
+ UpdateStatusType = Literal["Cancelled", "Failed", "InProgress", "Successful"]
293
+ UpdateTypeType = Literal[
294
+ "AccessConfigUpdate",
295
+ "AddonUpdate",
296
+ "AssociateEncryptionConfig",
297
+ "AssociateIdentityProviderConfig",
298
+ "AutoModeUpdate",
299
+ "ConfigUpdate",
300
+ "DisassociateIdentityProviderConfig",
301
+ "EndpointAccessUpdate",
302
+ "LoggingUpdate",
303
+ "UpgradePolicyUpdate",
304
+ "VersionUpdate",
305
+ "VpcConfigUpdate",
306
+ "ZonalShiftConfigUpdate",
307
+ ]
308
+ EKSServiceName = Literal["eks"]
309
+ ServiceName = Literal[
310
+ "accessanalyzer",
311
+ "account",
312
+ "acm",
313
+ "acm-pca",
314
+ "amp",
315
+ "amplify",
316
+ "amplifybackend",
317
+ "amplifyuibuilder",
318
+ "apigateway",
319
+ "apigatewaymanagementapi",
320
+ "apigatewayv2",
321
+ "appconfig",
322
+ "appconfigdata",
323
+ "appfabric",
324
+ "appflow",
325
+ "appintegrations",
326
+ "application-autoscaling",
327
+ "application-insights",
328
+ "application-signals",
329
+ "applicationcostprofiler",
330
+ "appmesh",
331
+ "apprunner",
332
+ "appstream",
333
+ "appsync",
334
+ "apptest",
335
+ "arc-zonal-shift",
336
+ "artifact",
337
+ "athena",
338
+ "auditmanager",
339
+ "autoscaling",
340
+ "autoscaling-plans",
341
+ "b2bi",
342
+ "backup",
343
+ "backup-gateway",
344
+ "backupsearch",
345
+ "batch",
346
+ "bcm-data-exports",
347
+ "bcm-pricing-calculator",
348
+ "bedrock",
349
+ "bedrock-agent",
350
+ "bedrock-agent-runtime",
351
+ "bedrock-data-automation",
352
+ "bedrock-data-automation-runtime",
353
+ "bedrock-runtime",
354
+ "billing",
355
+ "billingconductor",
356
+ "braket",
357
+ "budgets",
358
+ "ce",
359
+ "chatbot",
360
+ "chime",
361
+ "chime-sdk-identity",
362
+ "chime-sdk-media-pipelines",
363
+ "chime-sdk-meetings",
364
+ "chime-sdk-messaging",
365
+ "chime-sdk-voice",
366
+ "cleanrooms",
367
+ "cleanroomsml",
368
+ "cloud9",
369
+ "cloudcontrol",
370
+ "clouddirectory",
371
+ "cloudformation",
372
+ "cloudfront",
373
+ "cloudfront-keyvaluestore",
374
+ "cloudhsm",
375
+ "cloudhsmv2",
376
+ "cloudsearch",
377
+ "cloudsearchdomain",
378
+ "cloudtrail",
379
+ "cloudtrail-data",
380
+ "cloudwatch",
381
+ "codeartifact",
382
+ "codebuild",
383
+ "codecatalyst",
384
+ "codecommit",
385
+ "codeconnections",
386
+ "codedeploy",
387
+ "codeguru-reviewer",
388
+ "codeguru-security",
389
+ "codeguruprofiler",
390
+ "codepipeline",
391
+ "codestar-connections",
392
+ "codestar-notifications",
393
+ "cognito-identity",
394
+ "cognito-idp",
395
+ "cognito-sync",
396
+ "comprehend",
397
+ "comprehendmedical",
398
+ "compute-optimizer",
399
+ "config",
400
+ "connect",
401
+ "connect-contact-lens",
402
+ "connectcampaigns",
403
+ "connectcampaignsv2",
404
+ "connectcases",
405
+ "connectparticipant",
406
+ "controlcatalog",
407
+ "controltower",
408
+ "cost-optimization-hub",
409
+ "cur",
410
+ "customer-profiles",
411
+ "databrew",
412
+ "dataexchange",
413
+ "datapipeline",
414
+ "datasync",
415
+ "datazone",
416
+ "dax",
417
+ "deadline",
418
+ "detective",
419
+ "devicefarm",
420
+ "devops-guru",
421
+ "directconnect",
422
+ "discovery",
423
+ "dlm",
424
+ "dms",
425
+ "docdb",
426
+ "docdb-elastic",
427
+ "drs",
428
+ "ds",
429
+ "ds-data",
430
+ "dsql",
431
+ "dynamodb",
432
+ "dynamodbstreams",
433
+ "ebs",
434
+ "ec2",
435
+ "ec2-instance-connect",
436
+ "ecr",
437
+ "ecr-public",
438
+ "ecs",
439
+ "efs",
440
+ "eks",
441
+ "eks-auth",
442
+ "elastic-inference",
443
+ "elasticache",
444
+ "elasticbeanstalk",
445
+ "elastictranscoder",
446
+ "elb",
447
+ "elbv2",
448
+ "emr",
449
+ "emr-containers",
450
+ "emr-serverless",
451
+ "entityresolution",
452
+ "es",
453
+ "events",
454
+ "evidently",
455
+ "finspace",
456
+ "finspace-data",
457
+ "firehose",
458
+ "fis",
459
+ "fms",
460
+ "forecast",
461
+ "forecastquery",
462
+ "frauddetector",
463
+ "freetier",
464
+ "fsx",
465
+ "gamelift",
466
+ "geo-maps",
467
+ "geo-places",
468
+ "geo-routes",
469
+ "glacier",
470
+ "globalaccelerator",
471
+ "glue",
472
+ "grafana",
473
+ "greengrass",
474
+ "greengrassv2",
475
+ "groundstation",
476
+ "guardduty",
477
+ "health",
478
+ "healthlake",
479
+ "iam",
480
+ "identitystore",
481
+ "imagebuilder",
482
+ "importexport",
483
+ "inspector",
484
+ "inspector-scan",
485
+ "inspector2",
486
+ "internetmonitor",
487
+ "invoicing",
488
+ "iot",
489
+ "iot-data",
490
+ "iot-jobs-data",
491
+ "iotanalytics",
492
+ "iotdeviceadvisor",
493
+ "iotevents",
494
+ "iotevents-data",
495
+ "iotfleethub",
496
+ "iotfleetwise",
497
+ "iotsecuretunneling",
498
+ "iotsitewise",
499
+ "iotthingsgraph",
500
+ "iottwinmaker",
501
+ "iotwireless",
502
+ "ivs",
503
+ "ivs-realtime",
504
+ "ivschat",
505
+ "kafka",
506
+ "kafkaconnect",
507
+ "kendra",
508
+ "kendra-ranking",
509
+ "keyspaces",
510
+ "kinesis",
511
+ "kinesis-video-archived-media",
512
+ "kinesis-video-media",
513
+ "kinesis-video-signaling",
514
+ "kinesis-video-webrtc-storage",
515
+ "kinesisanalytics",
516
+ "kinesisanalyticsv2",
517
+ "kinesisvideo",
518
+ "kms",
519
+ "lakeformation",
520
+ "lambda",
521
+ "launch-wizard",
522
+ "lex-models",
523
+ "lex-runtime",
524
+ "lexv2-models",
525
+ "lexv2-runtime",
526
+ "license-manager",
527
+ "license-manager-linux-subscriptions",
528
+ "license-manager-user-subscriptions",
529
+ "lightsail",
530
+ "location",
531
+ "logs",
532
+ "lookoutequipment",
533
+ "lookoutmetrics",
534
+ "lookoutvision",
535
+ "m2",
536
+ "machinelearning",
537
+ "macie2",
538
+ "mailmanager",
539
+ "managedblockchain",
540
+ "managedblockchain-query",
541
+ "marketplace-agreement",
542
+ "marketplace-catalog",
543
+ "marketplace-deployment",
544
+ "marketplace-entitlement",
545
+ "marketplace-reporting",
546
+ "marketplacecommerceanalytics",
547
+ "mediaconnect",
548
+ "mediaconvert",
549
+ "medialive",
550
+ "mediapackage",
551
+ "mediapackage-vod",
552
+ "mediapackagev2",
553
+ "mediastore",
554
+ "mediastore-data",
555
+ "mediatailor",
556
+ "medical-imaging",
557
+ "memorydb",
558
+ "meteringmarketplace",
559
+ "mgh",
560
+ "mgn",
561
+ "migration-hub-refactor-spaces",
562
+ "migrationhub-config",
563
+ "migrationhuborchestrator",
564
+ "migrationhubstrategy",
565
+ "mq",
566
+ "mturk",
567
+ "mwaa",
568
+ "neptune",
569
+ "neptune-graph",
570
+ "neptunedata",
571
+ "network-firewall",
572
+ "networkflowmonitor",
573
+ "networkmanager",
574
+ "networkmonitor",
575
+ "notifications",
576
+ "notificationscontacts",
577
+ "oam",
578
+ "observabilityadmin",
579
+ "omics",
580
+ "opensearch",
581
+ "opensearchserverless",
582
+ "opsworks",
583
+ "opsworkscm",
584
+ "organizations",
585
+ "osis",
586
+ "outposts",
587
+ "panorama",
588
+ "partnercentral-selling",
589
+ "payment-cryptography",
590
+ "payment-cryptography-data",
591
+ "pca-connector-ad",
592
+ "pca-connector-scep",
593
+ "pcs",
594
+ "personalize",
595
+ "personalize-events",
596
+ "personalize-runtime",
597
+ "pi",
598
+ "pinpoint",
599
+ "pinpoint-email",
600
+ "pinpoint-sms-voice",
601
+ "pinpoint-sms-voice-v2",
602
+ "pipes",
603
+ "polly",
604
+ "pricing",
605
+ "privatenetworks",
606
+ "proton",
607
+ "qapps",
608
+ "qbusiness",
609
+ "qconnect",
610
+ "qldb",
611
+ "qldb-session",
612
+ "quicksight",
613
+ "ram",
614
+ "rbin",
615
+ "rds",
616
+ "rds-data",
617
+ "redshift",
618
+ "redshift-data",
619
+ "redshift-serverless",
620
+ "rekognition",
621
+ "repostspace",
622
+ "resiliencehub",
623
+ "resource-explorer-2",
624
+ "resource-groups",
625
+ "resourcegroupstaggingapi",
626
+ "robomaker",
627
+ "rolesanywhere",
628
+ "route53",
629
+ "route53-recovery-cluster",
630
+ "route53-recovery-control-config",
631
+ "route53-recovery-readiness",
632
+ "route53domains",
633
+ "route53profiles",
634
+ "route53resolver",
635
+ "rum",
636
+ "s3",
637
+ "s3control",
638
+ "s3outposts",
639
+ "s3tables",
640
+ "sagemaker",
641
+ "sagemaker-a2i-runtime",
642
+ "sagemaker-edge",
643
+ "sagemaker-featurestore-runtime",
644
+ "sagemaker-geospatial",
645
+ "sagemaker-metrics",
646
+ "sagemaker-runtime",
647
+ "savingsplans",
648
+ "scheduler",
649
+ "schemas",
650
+ "sdb",
651
+ "secretsmanager",
652
+ "security-ir",
653
+ "securityhub",
654
+ "securitylake",
655
+ "serverlessrepo",
656
+ "service-quotas",
657
+ "servicecatalog",
658
+ "servicecatalog-appregistry",
659
+ "servicediscovery",
660
+ "ses",
661
+ "sesv2",
662
+ "shield",
663
+ "signer",
664
+ "simspaceweaver",
665
+ "sms",
666
+ "sms-voice",
667
+ "snow-device-management",
668
+ "snowball",
669
+ "sns",
670
+ "socialmessaging",
671
+ "sqs",
672
+ "ssm",
673
+ "ssm-contacts",
674
+ "ssm-incidents",
675
+ "ssm-quicksetup",
676
+ "ssm-sap",
677
+ "sso",
678
+ "sso-admin",
679
+ "sso-oidc",
680
+ "stepfunctions",
681
+ "storagegateway",
682
+ "sts",
683
+ "supplychain",
684
+ "support",
685
+ "support-app",
686
+ "swf",
687
+ "synthetics",
688
+ "taxsettings",
689
+ "textract",
690
+ "timestream-influxdb",
691
+ "timestream-query",
692
+ "timestream-write",
693
+ "tnb",
694
+ "transcribe",
695
+ "transfer",
696
+ "translate",
697
+ "trustedadvisor",
698
+ "verifiedpermissions",
699
+ "voice-id",
700
+ "vpc-lattice",
701
+ "waf",
702
+ "waf-regional",
703
+ "wafv2",
704
+ "wellarchitected",
705
+ "wisdom",
706
+ "workdocs",
707
+ "workmail",
708
+ "workmailmessageflow",
709
+ "workspaces",
710
+ "workspaces-thin-client",
711
+ "workspaces-web",
712
+ "xray",
713
+ ]
714
+ ResourceServiceName = Literal[
715
+ "cloudformation",
716
+ "cloudwatch",
717
+ "dynamodb",
718
+ "ec2",
719
+ "glacier",
720
+ "iam",
721
+ "opsworks",
722
+ "s3",
723
+ "sns",
724
+ "sqs",
725
+ ]
726
+ PaginatorName = Literal[
727
+ "describe_addon_versions",
728
+ "describe_cluster_versions",
729
+ "list_access_entries",
730
+ "list_access_policies",
731
+ "list_addons",
732
+ "list_associated_access_policies",
733
+ "list_clusters",
734
+ "list_eks_anywhere_subscriptions",
735
+ "list_fargate_profiles",
736
+ "list_identity_provider_configs",
737
+ "list_insights",
738
+ "list_nodegroups",
739
+ "list_pod_identity_associations",
740
+ "list_updates",
741
+ ]
742
+ WaiterName = Literal[
743
+ "addon_active",
744
+ "addon_deleted",
745
+ "cluster_active",
746
+ "cluster_deleted",
747
+ "fargate_profile_active",
748
+ "fargate_profile_deleted",
749
+ "nodegroup_active",
750
+ "nodegroup_deleted",
751
+ ]
752
+ RegionName = Literal[
753
+ "af-south-1",
754
+ "ap-east-1",
755
+ "ap-northeast-1",
756
+ "ap-northeast-2",
757
+ "ap-northeast-3",
758
+ "ap-south-1",
759
+ "ap-south-2",
760
+ "ap-southeast-1",
761
+ "ap-southeast-2",
762
+ "ap-southeast-3",
763
+ "ap-southeast-4",
764
+ "ap-southeast-5",
765
+ "ap-southeast-7",
766
+ "ca-central-1",
767
+ "ca-west-1",
768
+ "eu-central-1",
769
+ "eu-central-2",
770
+ "eu-north-1",
771
+ "eu-south-1",
772
+ "eu-south-2",
773
+ "eu-west-1",
774
+ "eu-west-2",
775
+ "eu-west-3",
776
+ "il-central-1",
777
+ "me-central-1",
778
+ "me-south-1",
779
+ "mx-central-1",
780
+ "sa-east-1",
781
+ "us-east-1",
782
+ "us-east-2",
783
+ "us-west-1",
784
+ "us-west-2",
785
+ ]