mypy-boto3-eks 1.40.59__py3-none-any.whl → 1.41.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.
@@ -17,6 +17,7 @@ Usage::
17
17
  from __future__ import annotations
18
18
 
19
19
  import sys
20
+ from collections.abc import Mapping, Sequence
20
21
  from datetime import datetime
21
22
  from typing import Union
22
23
 
@@ -54,12 +55,6 @@ from .literals import (
54
55
  VersionStatusType,
55
56
  )
56
57
 
57
- if sys.version_info >= (3, 9):
58
- from builtins import dict as Dict
59
- from builtins import list as List
60
- from collections.abc import Mapping, Sequence
61
- else:
62
- from typing import Dict, List, Mapping, Sequence
63
58
  if sys.version_info >= (3, 12):
64
59
  from typing import Literal, NotRequired, TypedDict
65
60
  else:
@@ -328,11 +323,11 @@ AccessEntryTypeDef = TypedDict(
328
323
  {
329
324
  "clusterName": NotRequired[str],
330
325
  "principalArn": NotRequired[str],
331
- "kubernetesGroups": NotRequired[List[str]],
326
+ "kubernetesGroups": NotRequired[list[str]],
332
327
  "accessEntryArn": NotRequired[str],
333
328
  "createdAt": NotRequired[datetime],
334
329
  "modifiedAt": NotRequired[datetime],
335
- "tags": NotRequired[Dict[str, str]],
330
+ "tags": NotRequired[dict[str, str]],
336
331
  "username": NotRequired[str],
337
332
  "type": NotRequired[str],
338
333
  },
@@ -348,7 +343,7 @@ AccessScopeOutputTypeDef = TypedDict(
348
343
  "AccessScopeOutputTypeDef",
349
344
  {
350
345
  "type": NotRequired[AccessScopeTypeType],
351
- "namespaces": NotRequired[List[str]],
346
+ "namespaces": NotRequired[list[str]],
352
347
  },
353
348
  )
354
349
  AccessScopeTypeDef = TypedDict(
@@ -362,13 +357,13 @@ AccessScopeTypeDef = TypedDict(
362
357
 
363
358
  class AddonCompatibilityDetailTypeDef(TypedDict):
364
359
  name: NotRequired[str]
365
- compatibleVersions: NotRequired[List[str]]
360
+ compatibleVersions: NotRequired[list[str]]
366
361
 
367
362
 
368
363
  class AddonIssueTypeDef(TypedDict):
369
364
  code: NotRequired[AddonIssueCodeType]
370
365
  message: NotRequired[str]
371
- resourceIds: NotRequired[List[str]]
366
+ resourceIds: NotRequired[list[str]]
372
367
 
373
368
 
374
369
  class MarketplaceInformationTypeDef(TypedDict):
@@ -391,19 +386,19 @@ class AddonPodIdentityAssociationsTypeDef(TypedDict):
391
386
 
392
387
  class AddonPodIdentityConfigurationTypeDef(TypedDict):
393
388
  serviceAccount: NotRequired[str]
394
- recommendedManagedPolicies: NotRequired[List[str]]
389
+ recommendedManagedPolicies: NotRequired[list[str]]
395
390
 
396
391
 
397
392
  class CompatibilityTypeDef(TypedDict):
398
393
  clusterVersion: NotRequired[str]
399
- platformVersions: NotRequired[List[str]]
394
+ platformVersions: NotRequired[list[str]]
400
395
  defaultVersion: NotRequired[bool]
401
396
 
402
397
 
403
398
  class ResponseMetadataTypeDef(TypedDict):
404
399
  RequestId: str
405
400
  HTTPStatusCode: int
406
- HTTPHeaders: Dict[str, str]
401
+ HTTPHeaders: dict[str, str]
407
402
  RetryAttempts: int
408
403
  HostId: NotRequired[str]
409
404
 
@@ -440,12 +435,12 @@ class ClientStatTypeDef(TypedDict):
440
435
  class ClusterIssueTypeDef(TypedDict):
441
436
  code: NotRequired[ClusterIssueCodeType]
442
437
  message: NotRequired[str]
443
- resourceIds: NotRequired[List[str]]
438
+ resourceIds: NotRequired[list[str]]
444
439
 
445
440
 
446
441
  class ComputeConfigResponseTypeDef(TypedDict):
447
442
  enabled: NotRequired[bool]
448
- nodePools: NotRequired[List[str]]
443
+ nodePools: NotRequired[list[str]]
449
444
  nodeRoleArn: NotRequired[str]
450
445
 
451
446
 
@@ -462,13 +457,13 @@ class UpgradePolicyResponseTypeDef(TypedDict):
462
457
 
463
458
 
464
459
  class VpcConfigResponseTypeDef(TypedDict):
465
- subnetIds: NotRequired[List[str]]
466
- securityGroupIds: NotRequired[List[str]]
460
+ subnetIds: NotRequired[list[str]]
461
+ securityGroupIds: NotRequired[list[str]]
467
462
  clusterSecurityGroupId: NotRequired[str]
468
463
  vpcId: NotRequired[str]
469
464
  endpointPublicAccess: NotRequired[bool]
470
465
  endpointPrivateAccess: NotRequired[bool]
471
- publicAccessCidrs: NotRequired[List[str]]
466
+ publicAccessCidrs: NotRequired[list[str]]
472
467
 
473
468
 
474
469
  class ZonalShiftConfigResponseTypeDef(TypedDict):
@@ -593,7 +588,7 @@ class PodIdentityAssociationTypeDef(TypedDict):
593
588
  roleArn: NotRequired[str]
594
589
  associationArn: NotRequired[str]
595
590
  associationId: NotRequired[str]
596
- tags: NotRequired[Dict[str, str]]
591
+ tags: NotRequired[dict[str, str]]
597
592
  createdAt: NotRequired[datetime]
598
593
  modifiedAt: NotRequired[datetime]
599
594
  ownerArn: NotRequired[str]
@@ -775,18 +770,18 @@ class ProviderTypeDef(TypedDict):
775
770
  class ErrorDetailTypeDef(TypedDict):
776
771
  errorCode: NotRequired[ErrorCodeType]
777
772
  errorMessage: NotRequired[str]
778
- resourceIds: NotRequired[List[str]]
773
+ resourceIds: NotRequired[list[str]]
779
774
 
780
775
 
781
776
  class FargateProfileIssueTypeDef(TypedDict):
782
777
  code: NotRequired[FargateProfileIssueCodeType]
783
778
  message: NotRequired[str]
784
- resourceIds: NotRequired[List[str]]
779
+ resourceIds: NotRequired[list[str]]
785
780
 
786
781
 
787
782
  class FargateProfileSelectorOutputTypeDef(TypedDict):
788
783
  namespace: NotRequired[str]
789
- labels: NotRequired[Dict[str, str]]
784
+ labels: NotRequired[dict[str, str]]
790
785
 
791
786
 
792
787
  class FargateProfileSelectorTypeDef(TypedDict):
@@ -804,8 +799,8 @@ class OidcIdentityProviderConfigTypeDef(TypedDict):
804
799
  usernamePrefix: NotRequired[str]
805
800
  groupsClaim: NotRequired[str]
806
801
  groupsPrefix: NotRequired[str]
807
- requiredClaims: NotRequired[Dict[str, str]]
808
- tags: NotRequired[Dict[str, str]]
802
+ requiredClaims: NotRequired[dict[str, str]]
803
+ tags: NotRequired[dict[str, str]]
809
804
  status: NotRequired[ConfigStatusType]
810
805
 
811
806
 
@@ -827,7 +822,7 @@ class InsightsFilterTypeDef(TypedDict):
827
822
  class IssueTypeDef(TypedDict):
828
823
  code: NotRequired[NodegroupIssueCodeType]
829
824
  message: NotRequired[str]
830
- resourceIds: NotRequired[List[str]]
825
+ resourceIds: NotRequired[list[str]]
831
826
 
832
827
 
833
828
  class ListAccessEntriesRequestTypeDef(TypedDict):
@@ -917,7 +912,7 @@ class ListUpdatesRequestTypeDef(TypedDict):
917
912
  LogSetupOutputTypeDef = TypedDict(
918
913
  "LogSetupOutputTypeDef",
919
914
  {
920
- "types": NotRequired[List[LogTypeType]],
915
+ "types": NotRequired[list[LogTypeType]],
921
916
  "enabled": NotRequired[bool],
922
917
  },
923
918
  )
@@ -939,7 +934,7 @@ class NodeRepairConfigOverridesTypeDef(TypedDict):
939
934
 
940
935
  class RemoteAccessConfigOutputTypeDef(TypedDict):
941
936
  ec2SshKey: NotRequired[str]
942
- sourceSecurityGroups: NotRequired[List[str]]
937
+ sourceSecurityGroups: NotRequired[list[str]]
943
938
 
944
939
 
945
940
  class RemoteAccessConfigTypeDef(TypedDict):
@@ -948,11 +943,11 @@ class RemoteAccessConfigTypeDef(TypedDict):
948
943
 
949
944
 
950
945
  class RemoteNodeNetworkOutputTypeDef(TypedDict):
951
- cidrs: NotRequired[List[str]]
946
+ cidrs: NotRequired[list[str]]
952
947
 
953
948
 
954
949
  class RemotePodNetworkOutputTypeDef(TypedDict):
955
- cidrs: NotRequired[List[str]]
950
+ cidrs: NotRequired[list[str]]
956
951
 
957
952
 
958
953
  class RemoteNodeNetworkTypeDef(TypedDict):
@@ -1040,7 +1035,7 @@ AccessScopeUnionTypeDef = Union[AccessScopeTypeDef, AccessScopeOutputTypeDef]
1040
1035
 
1041
1036
 
1042
1037
  class AddonHealthTypeDef(TypedDict):
1043
- issues: NotRequired[List[AddonIssueTypeDef]]
1038
+ issues: NotRequired[list[AddonIssueTypeDef]]
1044
1039
 
1045
1040
 
1046
1041
  class CreateAddonRequestTypeDef(TypedDict):
@@ -1069,9 +1064,9 @@ class UpdateAddonRequestTypeDef(TypedDict):
1069
1064
 
1070
1065
  class AddonVersionInfoTypeDef(TypedDict):
1071
1066
  addonVersion: NotRequired[str]
1072
- architecture: NotRequired[List[str]]
1073
- computeTypes: NotRequired[List[str]]
1074
- compatibilities: NotRequired[List[CompatibilityTypeDef]]
1067
+ architecture: NotRequired[list[str]]
1068
+ computeTypes: NotRequired[list[str]]
1069
+ compatibilities: NotRequired[list[CompatibilityTypeDef]]
1075
1070
  requiresConfiguration: NotRequired[bool]
1076
1071
  requiresIamPermissions: NotRequired[bool]
1077
1072
 
@@ -1090,7 +1085,7 @@ class DescribeAddonConfigurationResponseTypeDef(TypedDict):
1090
1085
  addonName: str
1091
1086
  addonVersion: str
1092
1087
  configurationSchema: str
1093
- podIdentityConfiguration: List[AddonPodIdentityConfigurationTypeDef]
1088
+ podIdentityConfiguration: list[AddonPodIdentityConfigurationTypeDef]
1094
1089
  ResponseMetadata: ResponseMetadataTypeDef
1095
1090
 
1096
1091
 
@@ -1103,48 +1098,48 @@ class DescribeInsightsRefreshResponseTypeDef(TypedDict):
1103
1098
 
1104
1099
 
1105
1100
  class ListAccessEntriesResponseTypeDef(TypedDict):
1106
- accessEntries: List[str]
1101
+ accessEntries: list[str]
1107
1102
  ResponseMetadata: ResponseMetadataTypeDef
1108
1103
  nextToken: NotRequired[str]
1109
1104
 
1110
1105
 
1111
1106
  class ListAccessPoliciesResponseTypeDef(TypedDict):
1112
- accessPolicies: List[AccessPolicyTypeDef]
1107
+ accessPolicies: list[AccessPolicyTypeDef]
1113
1108
  ResponseMetadata: ResponseMetadataTypeDef
1114
1109
  nextToken: NotRequired[str]
1115
1110
 
1116
1111
 
1117
1112
  class ListAddonsResponseTypeDef(TypedDict):
1118
- addons: List[str]
1113
+ addons: list[str]
1119
1114
  ResponseMetadata: ResponseMetadataTypeDef
1120
1115
  nextToken: NotRequired[str]
1121
1116
 
1122
1117
 
1123
1118
  class ListClustersResponseTypeDef(TypedDict):
1124
- clusters: List[str]
1119
+ clusters: list[str]
1125
1120
  ResponseMetadata: ResponseMetadataTypeDef
1126
1121
  nextToken: NotRequired[str]
1127
1122
 
1128
1123
 
1129
1124
  class ListFargateProfilesResponseTypeDef(TypedDict):
1130
- fargateProfileNames: List[str]
1125
+ fargateProfileNames: list[str]
1131
1126
  ResponseMetadata: ResponseMetadataTypeDef
1132
1127
  nextToken: NotRequired[str]
1133
1128
 
1134
1129
 
1135
1130
  class ListNodegroupsResponseTypeDef(TypedDict):
1136
- nodegroups: List[str]
1131
+ nodegroups: list[str]
1137
1132
  ResponseMetadata: ResponseMetadataTypeDef
1138
1133
  nextToken: NotRequired[str]
1139
1134
 
1140
1135
 
1141
1136
  class ListTagsForResourceResponseTypeDef(TypedDict):
1142
- tags: Dict[str, str]
1137
+ tags: dict[str, str]
1143
1138
  ResponseMetadata: ResponseMetadataTypeDef
1144
1139
 
1145
1140
 
1146
1141
  class ListUpdatesResponseTypeDef(TypedDict):
1147
- updateIds: List[str]
1142
+ updateIds: list[str]
1148
1143
  ResponseMetadata: ResponseMetadataTypeDef
1149
1144
  nextToken: NotRequired[str]
1150
1145
 
@@ -1168,7 +1163,7 @@ class AssociateIdentityProviderConfigRequestTypeDef(TypedDict):
1168
1163
 
1169
1164
 
1170
1165
  class NodegroupResourcesTypeDef(TypedDict):
1171
- autoScalingGroups: NotRequired[List[AutoScalingGroupTypeDef]]
1166
+ autoScalingGroups: NotRequired[list[AutoScalingGroupTypeDef]]
1172
1167
  remoteAccessSecurityGroup: NotRequired[str]
1173
1168
 
1174
1169
 
@@ -1185,15 +1180,15 @@ class DeprecationDetailTypeDef(TypedDict):
1185
1180
  replacedWith: NotRequired[str]
1186
1181
  stopServingVersion: NotRequired[str]
1187
1182
  startServingReplacementVersion: NotRequired[str]
1188
- clientStats: NotRequired[List[ClientStatTypeDef]]
1183
+ clientStats: NotRequired[list[ClientStatTypeDef]]
1189
1184
 
1190
1185
 
1191
1186
  class ClusterHealthTypeDef(TypedDict):
1192
- issues: NotRequired[List[ClusterIssueTypeDef]]
1187
+ issues: NotRequired[list[ClusterIssueTypeDef]]
1193
1188
 
1194
1189
 
1195
1190
  class DescribeClusterVersionsResponseTypeDef(TypedDict):
1196
- clusterVersions: List[ClusterVersionInformationTypeDef]
1191
+ clusterVersions: list[ClusterVersionInformationTypeDef]
1197
1192
  ResponseMetadata: ResponseMetadataTypeDef
1198
1193
  nextToken: NotRequired[str]
1199
1194
 
@@ -1212,7 +1207,7 @@ class OutpostConfigRequestTypeDef(TypedDict):
1212
1207
 
1213
1208
 
1214
1209
  class OutpostConfigResponseTypeDef(TypedDict):
1215
- outpostArns: List[str]
1210
+ outpostArns: list[str]
1216
1211
  controlPlaneInstanceType: str
1217
1212
  controlPlanePlacement: NotRequired[ControlPlanePlacementResponseTypeDef]
1218
1213
 
@@ -1403,7 +1398,7 @@ class DisassociateIdentityProviderConfigRequestTypeDef(TypedDict):
1403
1398
 
1404
1399
 
1405
1400
  class ListIdentityProviderConfigsResponseTypeDef(TypedDict):
1406
- identityProviderConfigs: List[IdentityProviderConfigTypeDef]
1401
+ identityProviderConfigs: list[IdentityProviderConfigTypeDef]
1407
1402
  ResponseMetadata: ResponseMetadataTypeDef
1408
1403
  nextToken: NotRequired[str]
1409
1404
 
@@ -1421,9 +1416,9 @@ EksAnywhereSubscriptionTypeDef = TypedDict(
1421
1416
  "term": NotRequired[EksAnywhereSubscriptionTermTypeDef],
1422
1417
  "status": NotRequired[str],
1423
1418
  "autoRenew": NotRequired[bool],
1424
- "licenseArns": NotRequired[List[str]],
1425
- "licenses": NotRequired[List[LicenseTypeDef]],
1426
- "tags": NotRequired[Dict[str, str]],
1419
+ "licenseArns": NotRequired[list[str]],
1420
+ "licenses": NotRequired[list[LicenseTypeDef]],
1421
+ "tags": NotRequired[dict[str, str]],
1427
1422
  },
1428
1423
  )
1429
1424
 
@@ -1442,7 +1437,7 @@ class KubernetesNetworkConfigResponseTypeDef(TypedDict):
1442
1437
 
1443
1438
 
1444
1439
  class EncryptionConfigOutputTypeDef(TypedDict):
1445
- resources: NotRequired[List[str]]
1440
+ resources: NotRequired[list[str]]
1446
1441
  provider: NotRequired[ProviderTypeDef]
1447
1442
 
1448
1443
 
@@ -1452,7 +1447,7 @@ class EncryptionConfigTypeDef(TypedDict):
1452
1447
 
1453
1448
 
1454
1449
  class FargateProfileHealthTypeDef(TypedDict):
1455
- issues: NotRequired[List[FargateProfileIssueTypeDef]]
1450
+ issues: NotRequired[list[FargateProfileIssueTypeDef]]
1456
1451
 
1457
1452
 
1458
1453
  FargateProfileSelectorUnionTypeDef = Union[
@@ -1507,17 +1502,17 @@ ListInsightsRequestTypeDef = TypedDict(
1507
1502
 
1508
1503
 
1509
1504
  class NodegroupHealthTypeDef(TypedDict):
1510
- issues: NotRequired[List[IssueTypeDef]]
1505
+ issues: NotRequired[list[IssueTypeDef]]
1511
1506
 
1512
1507
 
1513
1508
  class ListPodIdentityAssociationsResponseTypeDef(TypedDict):
1514
- associations: List[PodIdentityAssociationSummaryTypeDef]
1509
+ associations: list[PodIdentityAssociationSummaryTypeDef]
1515
1510
  ResponseMetadata: ResponseMetadataTypeDef
1516
1511
  nextToken: NotRequired[str]
1517
1512
 
1518
1513
 
1519
1514
  class LoggingOutputTypeDef(TypedDict):
1520
- clusterLogging: NotRequired[List[LogSetupOutputTypeDef]]
1515
+ clusterLogging: NotRequired[list[LogSetupOutputTypeDef]]
1521
1516
 
1522
1517
 
1523
1518
  class LoggingTypeDef(TypedDict):
@@ -1530,7 +1525,7 @@ class NodeRepairConfigOutputTypeDef(TypedDict):
1530
1525
  maxUnhealthyNodeThresholdPercentage: NotRequired[int]
1531
1526
  maxParallelNodesRepairedCount: NotRequired[int]
1532
1527
  maxParallelNodesRepairedPercentage: NotRequired[int]
1533
- nodeRepairConfigOverrides: NotRequired[List[NodeRepairConfigOverridesTypeDef]]
1528
+ nodeRepairConfigOverrides: NotRequired[list[NodeRepairConfigOverridesTypeDef]]
1534
1529
 
1535
1530
 
1536
1531
  class NodeRepairConfigTypeDef(TypedDict):
@@ -1546,8 +1541,8 @@ RemoteAccessConfigUnionTypeDef = Union[RemoteAccessConfigTypeDef, RemoteAccessCo
1546
1541
 
1547
1542
 
1548
1543
  class RemoteNetworkConfigResponseTypeDef(TypedDict):
1549
- remoteNodeNetworks: NotRequired[List[RemoteNodeNetworkOutputTypeDef]]
1550
- remotePodNetworks: NotRequired[List[RemotePodNetworkOutputTypeDef]]
1544
+ remoteNodeNetworks: NotRequired[list[RemoteNodeNetworkOutputTypeDef]]
1545
+ remotePodNetworks: NotRequired[list[RemotePodNetworkOutputTypeDef]]
1551
1546
 
1552
1547
 
1553
1548
  RemoteNodeNetworkUnionTypeDef = Union[RemoteNodeNetworkTypeDef, RemoteNodeNetworkOutputTypeDef]
@@ -1558,9 +1553,9 @@ UpdateTypeDef = TypedDict(
1558
1553
  "id": NotRequired[str],
1559
1554
  "status": NotRequired[UpdateStatusType],
1560
1555
  "type": NotRequired[UpdateTypeType],
1561
- "params": NotRequired[List[UpdateParamTypeDef]],
1556
+ "params": NotRequired[list[UpdateParamTypeDef]],
1562
1557
  "createdAt": NotRequired[datetime],
1563
- "errors": NotRequired[List[ErrorDetailTypeDef]],
1558
+ "errors": NotRequired[list[ErrorDetailTypeDef]],
1564
1559
  },
1565
1560
  )
1566
1561
 
@@ -1575,7 +1570,7 @@ class AssociateAccessPolicyResponseTypeDef(TypedDict):
1575
1570
  class ListAssociatedAccessPoliciesResponseTypeDef(TypedDict):
1576
1571
  clusterName: str
1577
1572
  principalArn: str
1578
- associatedAccessPolicies: List[AssociatedAccessPolicyTypeDef]
1573
+ associatedAccessPolicies: list[AssociatedAccessPolicyTypeDef]
1579
1574
  ResponseMetadata: ResponseMetadataTypeDef
1580
1575
  nextToken: NotRequired[str]
1581
1576
 
@@ -1597,12 +1592,12 @@ class AddonTypeDef(TypedDict):
1597
1592
  createdAt: NotRequired[datetime]
1598
1593
  modifiedAt: NotRequired[datetime]
1599
1594
  serviceAccountRoleArn: NotRequired[str]
1600
- tags: NotRequired[Dict[str, str]]
1595
+ tags: NotRequired[dict[str, str]]
1601
1596
  publisher: NotRequired[str]
1602
1597
  owner: NotRequired[str]
1603
1598
  marketplaceInformation: NotRequired[MarketplaceInformationTypeDef]
1604
1599
  configurationValues: NotRequired[str]
1605
- podIdentityAssociations: NotRequired[List[str]]
1600
+ podIdentityAssociations: NotRequired[list[str]]
1606
1601
  namespaceConfig: NotRequired[AddonNamespaceConfigResponseTypeDef]
1607
1602
 
1608
1603
 
@@ -1611,7 +1606,7 @@ AddonInfoTypeDef = TypedDict(
1611
1606
  {
1612
1607
  "addonName": NotRequired[str],
1613
1608
  "type": NotRequired[str],
1614
- "addonVersions": NotRequired[List[AddonVersionInfoTypeDef]],
1609
+ "addonVersions": NotRequired[list[AddonVersionInfoTypeDef]],
1615
1610
  "publisher": NotRequired[str],
1616
1611
  "owner": NotRequired[str],
1617
1612
  "marketplaceInformation": NotRequired[MarketplaceInformationTypeDef],
@@ -1621,8 +1616,8 @@ AddonInfoTypeDef = TypedDict(
1621
1616
 
1622
1617
 
1623
1618
  class InsightCategorySpecificSummaryTypeDef(TypedDict):
1624
- deprecationDetails: NotRequired[List[DeprecationDetailTypeDef]]
1625
- addonCompatibilityDetails: NotRequired[List[AddonCompatibilityDetailTypeDef]]
1619
+ deprecationDetails: NotRequired[list[DeprecationDetailTypeDef]]
1620
+ addonCompatibilityDetails: NotRequired[list[AddonCompatibilityDetailTypeDef]]
1626
1621
 
1627
1622
 
1628
1623
  class CreateEksAnywhereSubscriptionResponseTypeDef(TypedDict):
@@ -1641,7 +1636,7 @@ class DescribeEksAnywhereSubscriptionResponseTypeDef(TypedDict):
1641
1636
 
1642
1637
 
1643
1638
  class ListEksAnywhereSubscriptionsResponseTypeDef(TypedDict):
1644
- subscriptions: List[EksAnywhereSubscriptionTypeDef]
1639
+ subscriptions: list[EksAnywhereSubscriptionTypeDef]
1645
1640
  ResponseMetadata: ResponseMetadataTypeDef
1646
1641
  nextToken: NotRequired[str]
1647
1642
 
@@ -1660,10 +1655,10 @@ class FargateProfileTypeDef(TypedDict):
1660
1655
  clusterName: NotRequired[str]
1661
1656
  createdAt: NotRequired[datetime]
1662
1657
  podExecutionRoleArn: NotRequired[str]
1663
- subnets: NotRequired[List[str]]
1664
- selectors: NotRequired[List[FargateProfileSelectorOutputTypeDef]]
1658
+ subnets: NotRequired[list[str]]
1659
+ selectors: NotRequired[list[FargateProfileSelectorOutputTypeDef]]
1665
1660
  status: NotRequired[FargateProfileStatusType]
1666
- tags: NotRequired[Dict[str, str]]
1661
+ tags: NotRequired[dict[str, str]]
1667
1662
  health: NotRequired[FargateProfileHealthTypeDef]
1668
1663
 
1669
1664
 
@@ -1683,7 +1678,7 @@ class DescribeIdentityProviderConfigResponseTypeDef(TypedDict):
1683
1678
 
1684
1679
 
1685
1680
  class ListInsightsResponseTypeDef(TypedDict):
1686
- insights: List[InsightSummaryTypeDef]
1681
+ insights: list[InsightSummaryTypeDef]
1687
1682
  ResponseMetadata: ResponseMetadataTypeDef
1688
1683
  nextToken: NotRequired[str]
1689
1684
 
@@ -1702,20 +1697,20 @@ class NodegroupTypeDef(TypedDict):
1702
1697
  status: NotRequired[NodegroupStatusType]
1703
1698
  capacityType: NotRequired[CapacityTypesType]
1704
1699
  scalingConfig: NotRequired[NodegroupScalingConfigTypeDef]
1705
- instanceTypes: NotRequired[List[str]]
1706
- subnets: NotRequired[List[str]]
1700
+ instanceTypes: NotRequired[list[str]]
1701
+ subnets: NotRequired[list[str]]
1707
1702
  remoteAccess: NotRequired[RemoteAccessConfigOutputTypeDef]
1708
1703
  amiType: NotRequired[AMITypesType]
1709
1704
  nodeRole: NotRequired[str]
1710
- labels: NotRequired[Dict[str, str]]
1711
- taints: NotRequired[List[TaintTypeDef]]
1705
+ labels: NotRequired[dict[str, str]]
1706
+ taints: NotRequired[list[TaintTypeDef]]
1712
1707
  resources: NotRequired[NodegroupResourcesTypeDef]
1713
1708
  diskSize: NotRequired[int]
1714
1709
  health: NotRequired[NodegroupHealthTypeDef]
1715
1710
  updateConfig: NotRequired[NodegroupUpdateConfigTypeDef]
1716
1711
  nodeRepairConfig: NotRequired[NodeRepairConfigOutputTypeDef]
1717
1712
  launchTemplate: NotRequired[LaunchTemplateSpecificationTypeDef]
1718
- tags: NotRequired[Dict[str, str]]
1713
+ tags: NotRequired[dict[str, str]]
1719
1714
 
1720
1715
 
1721
1716
  NodeRepairConfigUnionTypeDef = Union[NodeRepairConfigTypeDef, NodeRepairConfigOutputTypeDef]
@@ -1736,8 +1731,8 @@ ClusterTypeDef = TypedDict(
1736
1731
  "certificateAuthority": NotRequired[CertificateTypeDef],
1737
1732
  "clientRequestToken": NotRequired[str],
1738
1733
  "platformVersion": NotRequired[str],
1739
- "tags": NotRequired[Dict[str, str]],
1740
- "encryptionConfig": NotRequired[List[EncryptionConfigOutputTypeDef]],
1734
+ "tags": NotRequired[dict[str, str]],
1735
+ "encryptionConfig": NotRequired[list[EncryptionConfigOutputTypeDef]],
1741
1736
  "connectorConfig": NotRequired[ConnectorConfigResponseTypeDef],
1742
1737
  "id": NotRequired[str],
1743
1738
  "health": NotRequired[ClusterHealthTypeDef],
@@ -1765,7 +1760,7 @@ class AssociateEncryptionConfigResponseTypeDef(TypedDict):
1765
1760
 
1766
1761
  class AssociateIdentityProviderConfigResponseTypeDef(TypedDict):
1767
1762
  update: UpdateTypeDef
1768
- tags: Dict[str, str]
1763
+ tags: dict[str, str]
1769
1764
  ResponseMetadata: ResponseMetadataTypeDef
1770
1765
 
1771
1766
 
@@ -1820,7 +1815,7 @@ class DescribeAddonResponseTypeDef(TypedDict):
1820
1815
 
1821
1816
 
1822
1817
  class DescribeAddonVersionsResponseTypeDef(TypedDict):
1823
- addons: List[AddonInfoTypeDef]
1818
+ addons: list[AddonInfoTypeDef]
1824
1819
  ResponseMetadata: ResponseMetadataTypeDef
1825
1820
  nextToken: NotRequired[str]
1826
1821
 
@@ -1837,8 +1832,8 @@ InsightTypeDef = TypedDict(
1837
1832
  "description": NotRequired[str],
1838
1833
  "insightStatus": NotRequired[InsightStatusTypeDef],
1839
1834
  "recommendation": NotRequired[str],
1840
- "additionalInfo": NotRequired[Dict[str, str]],
1841
- "resources": NotRequired[List[InsightResourceDetailTypeDef]],
1835
+ "additionalInfo": NotRequired[dict[str, str]],
1836
+ "resources": NotRequired[list[InsightResourceDetailTypeDef]],
1842
1837
  "categorySpecificSummary": NotRequired[InsightCategorySpecificSummaryTypeDef],
1843
1838
  },
1844
1839
  )