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