mypy-boto3-eks 1.35.87__py3-none-any.whl → 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.
@@ -11,14 +11,14 @@ Usage::
11
11
  data: AccessConfigResponseTypeDef = ...
12
12
  ```
13
13
 
14
- Copyright 2024 Vlad Emelianov
14
+ Copyright 2025 Vlad Emelianov
15
15
  """
16
16
 
17
17
  from __future__ import annotations
18
18
 
19
19
  import sys
20
20
  from datetime import datetime
21
- from typing import Mapping, Sequence, Union
21
+ from typing import Union
22
22
 
23
23
  from .literals import (
24
24
  AccessScopeTypeType,
@@ -49,6 +49,12 @@ from .literals import (
49
49
  UpdateTypeType,
50
50
  )
51
51
 
52
+ if sys.version_info >= (3, 9):
53
+ from builtins import dict as Dict
54
+ from builtins import list as List
55
+ from collections.abc import Mapping, Sequence
56
+ else:
57
+ from typing import Dict, List, Mapping, Sequence
52
58
  if sys.version_info >= (3, 12):
53
59
  from typing import Literal, NotRequired, TypedDict
54
60
  else:
@@ -301,11 +307,11 @@ AccessEntryTypeDef = TypedDict(
301
307
  {
302
308
  "clusterName": NotRequired[str],
303
309
  "principalArn": NotRequired[str],
304
- "kubernetesGroups": NotRequired[list[str]],
310
+ "kubernetesGroups": NotRequired[List[str]],
305
311
  "accessEntryArn": NotRequired[str],
306
312
  "createdAt": NotRequired[datetime],
307
313
  "modifiedAt": NotRequired[datetime],
308
- "tags": NotRequired[dict[str, str]],
314
+ "tags": NotRequired[Dict[str, str]],
309
315
  "username": NotRequired[str],
310
316
  "type": NotRequired[str],
311
317
  },
@@ -321,7 +327,7 @@ AccessScopeOutputTypeDef = TypedDict(
321
327
  "AccessScopeOutputTypeDef",
322
328
  {
323
329
  "type": NotRequired[AccessScopeTypeType],
324
- "namespaces": NotRequired[list[str]],
330
+ "namespaces": NotRequired[List[str]],
325
331
  },
326
332
  )
327
333
  AccessScopeTypeDef = TypedDict(
@@ -335,13 +341,13 @@ AccessScopeTypeDef = TypedDict(
335
341
 
336
342
  class AddonCompatibilityDetailTypeDef(TypedDict):
337
343
  name: NotRequired[str]
338
- compatibleVersions: NotRequired[list[str]]
344
+ compatibleVersions: NotRequired[List[str]]
339
345
 
340
346
 
341
347
  class AddonIssueTypeDef(TypedDict):
342
348
  code: NotRequired[AddonIssueCodeType]
343
349
  message: NotRequired[str]
344
- resourceIds: NotRequired[list[str]]
350
+ resourceIds: NotRequired[List[str]]
345
351
 
346
352
 
347
353
  class MarketplaceInformationTypeDef(TypedDict):
@@ -356,19 +362,19 @@ class AddonPodIdentityAssociationsTypeDef(TypedDict):
356
362
 
357
363
  class AddonPodIdentityConfigurationTypeDef(TypedDict):
358
364
  serviceAccount: NotRequired[str]
359
- recommendedManagedPolicies: NotRequired[list[str]]
365
+ recommendedManagedPolicies: NotRequired[List[str]]
360
366
 
361
367
 
362
368
  class CompatibilityTypeDef(TypedDict):
363
369
  clusterVersion: NotRequired[str]
364
- platformVersions: NotRequired[list[str]]
370
+ platformVersions: NotRequired[List[str]]
365
371
  defaultVersion: NotRequired[bool]
366
372
 
367
373
 
368
374
  class ResponseMetadataTypeDef(TypedDict):
369
375
  RequestId: str
370
376
  HTTPStatusCode: int
371
- HTTPHeaders: dict[str, str]
377
+ HTTPHeaders: Dict[str, str]
372
378
  RetryAttempts: int
373
379
  HostId: NotRequired[str]
374
380
 
@@ -405,12 +411,12 @@ class ClientStatTypeDef(TypedDict):
405
411
  class ClusterIssueTypeDef(TypedDict):
406
412
  code: NotRequired[ClusterIssueCodeType]
407
413
  message: NotRequired[str]
408
- resourceIds: NotRequired[list[str]]
414
+ resourceIds: NotRequired[List[str]]
409
415
 
410
416
 
411
417
  class ComputeConfigResponseTypeDef(TypedDict):
412
418
  enabled: NotRequired[bool]
413
- nodePools: NotRequired[list[str]]
419
+ nodePools: NotRequired[List[str]]
414
420
  nodeRoleArn: NotRequired[str]
415
421
 
416
422
 
@@ -427,13 +433,13 @@ class UpgradePolicyResponseTypeDef(TypedDict):
427
433
 
428
434
 
429
435
  class VpcConfigResponseTypeDef(TypedDict):
430
- subnetIds: NotRequired[list[str]]
431
- securityGroupIds: NotRequired[list[str]]
436
+ subnetIds: NotRequired[List[str]]
437
+ securityGroupIds: NotRequired[List[str]]
432
438
  clusterSecurityGroupId: NotRequired[str]
433
439
  vpcId: NotRequired[str]
434
440
  endpointPublicAccess: NotRequired[bool]
435
441
  endpointPrivateAccess: NotRequired[bool]
436
- publicAccessCidrs: NotRequired[list[str]]
442
+ publicAccessCidrs: NotRequired[List[str]]
437
443
 
438
444
 
439
445
  class ZonalShiftConfigResponseTypeDef(TypedDict):
@@ -563,7 +569,7 @@ class PodIdentityAssociationTypeDef(TypedDict):
563
569
  roleArn: NotRequired[str]
564
570
  associationArn: NotRequired[str]
565
571
  associationId: NotRequired[str]
566
- tags: NotRequired[dict[str, str]]
572
+ tags: NotRequired[Dict[str, str]]
567
573
  createdAt: NotRequired[datetime]
568
574
  modifiedAt: NotRequired[datetime]
569
575
  ownerArn: NotRequired[str]
@@ -728,18 +734,18 @@ class ProviderTypeDef(TypedDict):
728
734
  class ErrorDetailTypeDef(TypedDict):
729
735
  errorCode: NotRequired[ErrorCodeType]
730
736
  errorMessage: NotRequired[str]
731
- resourceIds: NotRequired[list[str]]
737
+ resourceIds: NotRequired[List[str]]
732
738
 
733
739
 
734
740
  class FargateProfileIssueTypeDef(TypedDict):
735
741
  code: NotRequired[FargateProfileIssueCodeType]
736
742
  message: NotRequired[str]
737
- resourceIds: NotRequired[list[str]]
743
+ resourceIds: NotRequired[List[str]]
738
744
 
739
745
 
740
746
  class FargateProfileSelectorOutputTypeDef(TypedDict):
741
747
  namespace: NotRequired[str]
742
- labels: NotRequired[dict[str, str]]
748
+ labels: NotRequired[Dict[str, str]]
743
749
 
744
750
 
745
751
  class FargateProfileSelectorTypeDef(TypedDict):
@@ -757,8 +763,8 @@ class OidcIdentityProviderConfigTypeDef(TypedDict):
757
763
  usernamePrefix: NotRequired[str]
758
764
  groupsClaim: NotRequired[str]
759
765
  groupsPrefix: NotRequired[str]
760
- requiredClaims: NotRequired[dict[str, str]]
761
- tags: NotRequired[dict[str, str]]
766
+ requiredClaims: NotRequired[Dict[str, str]]
767
+ tags: NotRequired[Dict[str, str]]
762
768
  status: NotRequired[ConfigStatusType]
763
769
 
764
770
 
@@ -780,7 +786,7 @@ class InsightsFilterTypeDef(TypedDict):
780
786
  class IssueTypeDef(TypedDict):
781
787
  code: NotRequired[NodegroupIssueCodeType]
782
788
  message: NotRequired[str]
783
- resourceIds: NotRequired[list[str]]
789
+ resourceIds: NotRequired[List[str]]
784
790
 
785
791
 
786
792
  class ListAccessEntriesRequestRequestTypeDef(TypedDict):
@@ -870,7 +876,7 @@ class ListUpdatesRequestRequestTypeDef(TypedDict):
870
876
  LogSetupOutputTypeDef = TypedDict(
871
877
  "LogSetupOutputTypeDef",
872
878
  {
873
- "types": NotRequired[list[LogTypeType]],
879
+ "types": NotRequired[List[LogTypeType]],
874
880
  "enabled": NotRequired[bool],
875
881
  },
876
882
  )
@@ -885,15 +891,15 @@ LogSetupTypeDef = TypedDict(
885
891
 
886
892
  class RemoteAccessConfigOutputTypeDef(TypedDict):
887
893
  ec2SshKey: NotRequired[str]
888
- sourceSecurityGroups: NotRequired[list[str]]
894
+ sourceSecurityGroups: NotRequired[List[str]]
889
895
 
890
896
 
891
897
  class RemoteNodeNetworkOutputTypeDef(TypedDict):
892
- cidrs: NotRequired[list[str]]
898
+ cidrs: NotRequired[List[str]]
893
899
 
894
900
 
895
901
  class RemotePodNetworkOutputTypeDef(TypedDict):
896
- cidrs: NotRequired[list[str]]
902
+ cidrs: NotRequired[List[str]]
897
903
 
898
904
 
899
905
  class RemoteNodeNetworkTypeDef(TypedDict):
@@ -978,7 +984,7 @@ class AssociateAccessPolicyRequestRequestTypeDef(TypedDict):
978
984
 
979
985
 
980
986
  class AddonHealthTypeDef(TypedDict):
981
- issues: NotRequired[list[AddonIssueTypeDef]]
987
+ issues: NotRequired[List[AddonIssueTypeDef]]
982
988
 
983
989
 
984
990
  class CreateAddonRequestRequestTypeDef(TypedDict):
@@ -1006,9 +1012,9 @@ class UpdateAddonRequestRequestTypeDef(TypedDict):
1006
1012
 
1007
1013
  class AddonVersionInfoTypeDef(TypedDict):
1008
1014
  addonVersion: NotRequired[str]
1009
- architecture: NotRequired[list[str]]
1010
- computeTypes: NotRequired[list[str]]
1011
- compatibilities: NotRequired[list[CompatibilityTypeDef]]
1015
+ architecture: NotRequired[List[str]]
1016
+ computeTypes: NotRequired[List[str]]
1017
+ compatibilities: NotRequired[List[CompatibilityTypeDef]]
1012
1018
  requiresConfiguration: NotRequired[bool]
1013
1019
  requiresIamPermissions: NotRequired[bool]
1014
1020
 
@@ -1027,53 +1033,53 @@ class DescribeAddonConfigurationResponseTypeDef(TypedDict):
1027
1033
  addonName: str
1028
1034
  addonVersion: str
1029
1035
  configurationSchema: str
1030
- podIdentityConfiguration: list[AddonPodIdentityConfigurationTypeDef]
1036
+ podIdentityConfiguration: List[AddonPodIdentityConfigurationTypeDef]
1031
1037
  ResponseMetadata: ResponseMetadataTypeDef
1032
1038
 
1033
1039
 
1034
1040
  class ListAccessEntriesResponseTypeDef(TypedDict):
1035
- accessEntries: list[str]
1041
+ accessEntries: List[str]
1036
1042
  ResponseMetadata: ResponseMetadataTypeDef
1037
1043
  nextToken: NotRequired[str]
1038
1044
 
1039
1045
 
1040
1046
  class ListAccessPoliciesResponseTypeDef(TypedDict):
1041
- accessPolicies: list[AccessPolicyTypeDef]
1047
+ accessPolicies: List[AccessPolicyTypeDef]
1042
1048
  ResponseMetadata: ResponseMetadataTypeDef
1043
1049
  nextToken: NotRequired[str]
1044
1050
 
1045
1051
 
1046
1052
  class ListAddonsResponseTypeDef(TypedDict):
1047
- addons: list[str]
1053
+ addons: List[str]
1048
1054
  ResponseMetadata: ResponseMetadataTypeDef
1049
1055
  nextToken: NotRequired[str]
1050
1056
 
1051
1057
 
1052
1058
  class ListClustersResponseTypeDef(TypedDict):
1053
- clusters: list[str]
1059
+ clusters: List[str]
1054
1060
  ResponseMetadata: ResponseMetadataTypeDef
1055
1061
  nextToken: NotRequired[str]
1056
1062
 
1057
1063
 
1058
1064
  class ListFargateProfilesResponseTypeDef(TypedDict):
1059
- fargateProfileNames: list[str]
1065
+ fargateProfileNames: List[str]
1060
1066
  ResponseMetadata: ResponseMetadataTypeDef
1061
1067
  nextToken: NotRequired[str]
1062
1068
 
1063
1069
 
1064
1070
  class ListNodegroupsResponseTypeDef(TypedDict):
1065
- nodegroups: list[str]
1071
+ nodegroups: List[str]
1066
1072
  ResponseMetadata: ResponseMetadataTypeDef
1067
1073
  nextToken: NotRequired[str]
1068
1074
 
1069
1075
 
1070
1076
  class ListTagsForResourceResponseTypeDef(TypedDict):
1071
- tags: dict[str, str]
1077
+ tags: Dict[str, str]
1072
1078
  ResponseMetadata: ResponseMetadataTypeDef
1073
1079
 
1074
1080
 
1075
1081
  class ListUpdatesResponseTypeDef(TypedDict):
1076
- updateIds: list[str]
1082
+ updateIds: List[str]
1077
1083
  ResponseMetadata: ResponseMetadataTypeDef
1078
1084
  nextToken: NotRequired[str]
1079
1085
 
@@ -1091,7 +1097,7 @@ class AssociateIdentityProviderConfigRequestRequestTypeDef(TypedDict):
1091
1097
 
1092
1098
 
1093
1099
  class NodegroupResourcesTypeDef(TypedDict):
1094
- autoScalingGroups: NotRequired[list[AutoScalingGroupTypeDef]]
1100
+ autoScalingGroups: NotRequired[List[AutoScalingGroupTypeDef]]
1095
1101
  remoteAccessSecurityGroup: NotRequired[str]
1096
1102
 
1097
1103
 
@@ -1108,15 +1114,15 @@ class DeprecationDetailTypeDef(TypedDict):
1108
1114
  replacedWith: NotRequired[str]
1109
1115
  stopServingVersion: NotRequired[str]
1110
1116
  startServingReplacementVersion: NotRequired[str]
1111
- clientStats: NotRequired[list[ClientStatTypeDef]]
1117
+ clientStats: NotRequired[List[ClientStatTypeDef]]
1112
1118
 
1113
1119
 
1114
1120
  class ClusterHealthTypeDef(TypedDict):
1115
- issues: NotRequired[list[ClusterIssueTypeDef]]
1121
+ issues: NotRequired[List[ClusterIssueTypeDef]]
1116
1122
 
1117
1123
 
1118
1124
  class DescribeClusterVersionsResponseTypeDef(TypedDict):
1119
- clusterVersions: list[ClusterVersionInformationTypeDef]
1125
+ clusterVersions: List[ClusterVersionInformationTypeDef]
1120
1126
  ResponseMetadata: ResponseMetadataTypeDef
1121
1127
  nextToken: NotRequired[str]
1122
1128
 
@@ -1135,7 +1141,7 @@ class OutpostConfigRequestTypeDef(TypedDict):
1135
1141
 
1136
1142
 
1137
1143
  class OutpostConfigResponseTypeDef(TypedDict):
1138
- outpostArns: list[str]
1144
+ outpostArns: List[str]
1139
1145
  controlPlaneInstanceType: str
1140
1146
  controlPlanePlacement: NotRequired[ControlPlanePlacementResponseTypeDef]
1141
1147
 
@@ -1163,8 +1169,8 @@ EksAnywhereSubscriptionTypeDef = TypedDict(
1163
1169
  "term": NotRequired[EksAnywhereSubscriptionTermTypeDef],
1164
1170
  "status": NotRequired[str],
1165
1171
  "autoRenew": NotRequired[bool],
1166
- "licenseArns": NotRequired[list[str]],
1167
- "tags": NotRequired[dict[str, str]],
1172
+ "licenseArns": NotRequired[List[str]],
1173
+ "tags": NotRequired[Dict[str, str]],
1168
1174
  },
1169
1175
  )
1170
1176
 
@@ -1343,7 +1349,7 @@ class DisassociateIdentityProviderConfigRequestRequestTypeDef(TypedDict):
1343
1349
 
1344
1350
 
1345
1351
  class ListIdentityProviderConfigsResponseTypeDef(TypedDict):
1346
- identityProviderConfigs: list[IdentityProviderConfigTypeDef]
1352
+ identityProviderConfigs: List[IdentityProviderConfigTypeDef]
1347
1353
  ResponseMetadata: ResponseMetadataTypeDef
1348
1354
  nextToken: NotRequired[str]
1349
1355
 
@@ -1362,7 +1368,7 @@ class KubernetesNetworkConfigResponseTypeDef(TypedDict):
1362
1368
 
1363
1369
 
1364
1370
  class EncryptionConfigOutputTypeDef(TypedDict):
1365
- resources: NotRequired[list[str]]
1371
+ resources: NotRequired[List[str]]
1366
1372
  provider: NotRequired[ProviderTypeDef]
1367
1373
 
1368
1374
 
@@ -1372,7 +1378,7 @@ class EncryptionConfigTypeDef(TypedDict):
1372
1378
 
1373
1379
 
1374
1380
  class FargateProfileHealthTypeDef(TypedDict):
1375
- issues: NotRequired[list[FargateProfileIssueTypeDef]]
1381
+ issues: NotRequired[List[FargateProfileIssueTypeDef]]
1376
1382
 
1377
1383
 
1378
1384
  FargateProfileSelectorUnionTypeDef = Union[
@@ -1427,25 +1433,25 @@ ListInsightsRequestRequestTypeDef = TypedDict(
1427
1433
 
1428
1434
 
1429
1435
  class NodegroupHealthTypeDef(TypedDict):
1430
- issues: NotRequired[list[IssueTypeDef]]
1436
+ issues: NotRequired[List[IssueTypeDef]]
1431
1437
 
1432
1438
 
1433
1439
  class ListPodIdentityAssociationsResponseTypeDef(TypedDict):
1434
- associations: list[PodIdentityAssociationSummaryTypeDef]
1440
+ associations: List[PodIdentityAssociationSummaryTypeDef]
1435
1441
  ResponseMetadata: ResponseMetadataTypeDef
1436
1442
  nextToken: NotRequired[str]
1437
1443
 
1438
1444
 
1439
1445
  class LoggingOutputTypeDef(TypedDict):
1440
- clusterLogging: NotRequired[list[LogSetupOutputTypeDef]]
1446
+ clusterLogging: NotRequired[List[LogSetupOutputTypeDef]]
1441
1447
 
1442
1448
 
1443
1449
  LogSetupUnionTypeDef = Union[LogSetupTypeDef, LogSetupOutputTypeDef]
1444
1450
 
1445
1451
 
1446
1452
  class RemoteNetworkConfigResponseTypeDef(TypedDict):
1447
- remoteNodeNetworks: NotRequired[list[RemoteNodeNetworkOutputTypeDef]]
1448
- remotePodNetworks: NotRequired[list[RemotePodNetworkOutputTypeDef]]
1453
+ remoteNodeNetworks: NotRequired[List[RemoteNodeNetworkOutputTypeDef]]
1454
+ remotePodNetworks: NotRequired[List[RemotePodNetworkOutputTypeDef]]
1449
1455
 
1450
1456
 
1451
1457
  RemoteNodeNetworkUnionTypeDef = Union[RemoteNodeNetworkTypeDef, RemoteNodeNetworkOutputTypeDef]
@@ -1456,9 +1462,9 @@ UpdateTypeDef = TypedDict(
1456
1462
  "id": NotRequired[str],
1457
1463
  "status": NotRequired[UpdateStatusType],
1458
1464
  "type": NotRequired[UpdateTypeType],
1459
- "params": NotRequired[list[UpdateParamTypeDef]],
1465
+ "params": NotRequired[List[UpdateParamTypeDef]],
1460
1466
  "createdAt": NotRequired[datetime],
1461
- "errors": NotRequired[list[ErrorDetailTypeDef]],
1467
+ "errors": NotRequired[List[ErrorDetailTypeDef]],
1462
1468
  },
1463
1469
  )
1464
1470
 
@@ -1473,7 +1479,7 @@ class AssociateAccessPolicyResponseTypeDef(TypedDict):
1473
1479
  class ListAssociatedAccessPoliciesResponseTypeDef(TypedDict):
1474
1480
  clusterName: str
1475
1481
  principalArn: str
1476
- associatedAccessPolicies: list[AssociatedAccessPolicyTypeDef]
1482
+ associatedAccessPolicies: List[AssociatedAccessPolicyTypeDef]
1477
1483
  ResponseMetadata: ResponseMetadataTypeDef
1478
1484
  nextToken: NotRequired[str]
1479
1485
 
@@ -1488,12 +1494,12 @@ class AddonTypeDef(TypedDict):
1488
1494
  createdAt: NotRequired[datetime]
1489
1495
  modifiedAt: NotRequired[datetime]
1490
1496
  serviceAccountRoleArn: NotRequired[str]
1491
- tags: NotRequired[dict[str, str]]
1497
+ tags: NotRequired[Dict[str, str]]
1492
1498
  publisher: NotRequired[str]
1493
1499
  owner: NotRequired[str]
1494
1500
  marketplaceInformation: NotRequired[MarketplaceInformationTypeDef]
1495
1501
  configurationValues: NotRequired[str]
1496
- podIdentityAssociations: NotRequired[list[str]]
1502
+ podIdentityAssociations: NotRequired[List[str]]
1497
1503
 
1498
1504
 
1499
1505
  AddonInfoTypeDef = TypedDict(
@@ -1501,7 +1507,7 @@ AddonInfoTypeDef = TypedDict(
1501
1507
  {
1502
1508
  "addonName": NotRequired[str],
1503
1509
  "type": NotRequired[str],
1504
- "addonVersions": NotRequired[list[AddonVersionInfoTypeDef]],
1510
+ "addonVersions": NotRequired[List[AddonVersionInfoTypeDef]],
1505
1511
  "publisher": NotRequired[str],
1506
1512
  "owner": NotRequired[str],
1507
1513
  "marketplaceInformation": NotRequired[MarketplaceInformationTypeDef],
@@ -1510,8 +1516,8 @@ AddonInfoTypeDef = TypedDict(
1510
1516
 
1511
1517
 
1512
1518
  class InsightCategorySpecificSummaryTypeDef(TypedDict):
1513
- deprecationDetails: NotRequired[list[DeprecationDetailTypeDef]]
1514
- addonCompatibilityDetails: NotRequired[list[AddonCompatibilityDetailTypeDef]]
1519
+ deprecationDetails: NotRequired[List[DeprecationDetailTypeDef]]
1520
+ addonCompatibilityDetails: NotRequired[List[AddonCompatibilityDetailTypeDef]]
1515
1521
 
1516
1522
 
1517
1523
  class CreateEksAnywhereSubscriptionResponseTypeDef(TypedDict):
@@ -1530,7 +1536,7 @@ class DescribeEksAnywhereSubscriptionResponseTypeDef(TypedDict):
1530
1536
 
1531
1537
 
1532
1538
  class ListEksAnywhereSubscriptionsResponseTypeDef(TypedDict):
1533
- subscriptions: list[EksAnywhereSubscriptionTypeDef]
1539
+ subscriptions: List[EksAnywhereSubscriptionTypeDef]
1534
1540
  ResponseMetadata: ResponseMetadataTypeDef
1535
1541
  nextToken: NotRequired[str]
1536
1542
 
@@ -1560,10 +1566,10 @@ class FargateProfileTypeDef(TypedDict):
1560
1566
  clusterName: NotRequired[str]
1561
1567
  createdAt: NotRequired[datetime]
1562
1568
  podExecutionRoleArn: NotRequired[str]
1563
- subnets: NotRequired[list[str]]
1564
- selectors: NotRequired[list[FargateProfileSelectorOutputTypeDef]]
1569
+ subnets: NotRequired[List[str]]
1570
+ selectors: NotRequired[List[FargateProfileSelectorOutputTypeDef]]
1565
1571
  status: NotRequired[FargateProfileStatusType]
1566
- tags: NotRequired[dict[str, str]]
1572
+ tags: NotRequired[Dict[str, str]]
1567
1573
  health: NotRequired[FargateProfileHealthTypeDef]
1568
1574
 
1569
1575
 
@@ -1583,7 +1589,7 @@ class DescribeIdentityProviderConfigResponseTypeDef(TypedDict):
1583
1589
 
1584
1590
 
1585
1591
  class ListInsightsResponseTypeDef(TypedDict):
1586
- insights: list[InsightSummaryTypeDef]
1592
+ insights: List[InsightSummaryTypeDef]
1587
1593
  ResponseMetadata: ResponseMetadataTypeDef
1588
1594
  nextToken: NotRequired[str]
1589
1595
 
@@ -1599,20 +1605,20 @@ class NodegroupTypeDef(TypedDict):
1599
1605
  status: NotRequired[NodegroupStatusType]
1600
1606
  capacityType: NotRequired[CapacityTypesType]
1601
1607
  scalingConfig: NotRequired[NodegroupScalingConfigTypeDef]
1602
- instanceTypes: NotRequired[list[str]]
1603
- subnets: NotRequired[list[str]]
1608
+ instanceTypes: NotRequired[List[str]]
1609
+ subnets: NotRequired[List[str]]
1604
1610
  remoteAccess: NotRequired[RemoteAccessConfigOutputTypeDef]
1605
1611
  amiType: NotRequired[AMITypesType]
1606
1612
  nodeRole: NotRequired[str]
1607
- labels: NotRequired[dict[str, str]]
1608
- taints: NotRequired[list[TaintTypeDef]]
1613
+ labels: NotRequired[Dict[str, str]]
1614
+ taints: NotRequired[List[TaintTypeDef]]
1609
1615
  resources: NotRequired[NodegroupResourcesTypeDef]
1610
1616
  diskSize: NotRequired[int]
1611
1617
  health: NotRequired[NodegroupHealthTypeDef]
1612
1618
  updateConfig: NotRequired[NodegroupUpdateConfigTypeDef]
1613
1619
  nodeRepairConfig: NotRequired[NodeRepairConfigTypeDef]
1614
1620
  launchTemplate: NotRequired[LaunchTemplateSpecificationTypeDef]
1615
- tags: NotRequired[dict[str, str]]
1621
+ tags: NotRequired[Dict[str, str]]
1616
1622
 
1617
1623
 
1618
1624
  class LoggingTypeDef(TypedDict):
@@ -1636,8 +1642,8 @@ ClusterTypeDef = TypedDict(
1636
1642
  "certificateAuthority": NotRequired[CertificateTypeDef],
1637
1643
  "clientRequestToken": NotRequired[str],
1638
1644
  "platformVersion": NotRequired[str],
1639
- "tags": NotRequired[dict[str, str]],
1640
- "encryptionConfig": NotRequired[list[EncryptionConfigOutputTypeDef]],
1645
+ "tags": NotRequired[Dict[str, str]],
1646
+ "encryptionConfig": NotRequired[List[EncryptionConfigOutputTypeDef]],
1641
1647
  "connectorConfig": NotRequired[ConnectorConfigResponseTypeDef],
1642
1648
  "id": NotRequired[str],
1643
1649
  "health": NotRequired[ClusterHealthTypeDef],
@@ -1664,7 +1670,7 @@ class AssociateEncryptionConfigResponseTypeDef(TypedDict):
1664
1670
 
1665
1671
  class AssociateIdentityProviderConfigResponseTypeDef(TypedDict):
1666
1672
  update: UpdateTypeDef
1667
- tags: dict[str, str]
1673
+ tags: Dict[str, str]
1668
1674
  ResponseMetadata: ResponseMetadataTypeDef
1669
1675
 
1670
1676
 
@@ -1719,7 +1725,7 @@ class DescribeAddonResponseTypeDef(TypedDict):
1719
1725
 
1720
1726
 
1721
1727
  class DescribeAddonVersionsResponseTypeDef(TypedDict):
1722
- addons: list[AddonInfoTypeDef]
1728
+ addons: List[AddonInfoTypeDef]
1723
1729
  ResponseMetadata: ResponseMetadataTypeDef
1724
1730
  nextToken: NotRequired[str]
1725
1731
 
@@ -1736,8 +1742,8 @@ InsightTypeDef = TypedDict(
1736
1742
  "description": NotRequired[str],
1737
1743
  "insightStatus": NotRequired[InsightStatusTypeDef],
1738
1744
  "recommendation": NotRequired[str],
1739
- "additionalInfo": NotRequired[dict[str, str]],
1740
- "resources": NotRequired[list[InsightResourceDetailTypeDef]],
1745
+ "additionalInfo": NotRequired[Dict[str, str]],
1746
+ "resources": NotRequired[List[InsightResourceDetailTypeDef]],
1741
1747
  "categorySpecificSummary": NotRequired[InsightCategorySpecificSummaryTypeDef],
1742
1748
  },
1743
1749
  )