types-boto3-eks 1.40.59__py3-none-any.whl → 1.41.2__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
 
@@ -44,6 +45,7 @@ from .literals import (
44
45
  NodegroupIssueCodeType,
45
46
  NodegroupStatusType,
46
47
  NodegroupUpdateStrategiesType,
48
+ ProvisionedControlPlaneTierType,
47
49
  RepairActionType,
48
50
  ResolveConflictsType,
49
51
  SupportTypeType,
@@ -54,12 +56,6 @@ from .literals import (
54
56
  VersionStatusType,
55
57
  )
56
58
 
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
59
  if sys.version_info >= (3, 12):
64
60
  from typing import Literal, NotRequired, TypedDict
65
61
  else:
@@ -105,6 +101,7 @@ __all__ = (
105
101
  "ConnectorConfigResponseTypeDef",
106
102
  "ControlPlanePlacementRequestTypeDef",
107
103
  "ControlPlanePlacementResponseTypeDef",
104
+ "ControlPlaneScalingConfigTypeDef",
108
105
  "CreateAccessConfigRequestTypeDef",
109
106
  "CreateAccessEntryRequestTypeDef",
110
107
  "CreateAccessEntryResponseTypeDef",
@@ -328,11 +325,11 @@ AccessEntryTypeDef = TypedDict(
328
325
  {
329
326
  "clusterName": NotRequired[str],
330
327
  "principalArn": NotRequired[str],
331
- "kubernetesGroups": NotRequired[List[str]],
328
+ "kubernetesGroups": NotRequired[list[str]],
332
329
  "accessEntryArn": NotRequired[str],
333
330
  "createdAt": NotRequired[datetime],
334
331
  "modifiedAt": NotRequired[datetime],
335
- "tags": NotRequired[Dict[str, str]],
332
+ "tags": NotRequired[dict[str, str]],
336
333
  "username": NotRequired[str],
337
334
  "type": NotRequired[str],
338
335
  },
@@ -348,7 +345,7 @@ AccessScopeOutputTypeDef = TypedDict(
348
345
  "AccessScopeOutputTypeDef",
349
346
  {
350
347
  "type": NotRequired[AccessScopeTypeType],
351
- "namespaces": NotRequired[List[str]],
348
+ "namespaces": NotRequired[list[str]],
352
349
  },
353
350
  )
354
351
  AccessScopeTypeDef = TypedDict(
@@ -362,13 +359,13 @@ AccessScopeTypeDef = TypedDict(
362
359
 
363
360
  class AddonCompatibilityDetailTypeDef(TypedDict):
364
361
  name: NotRequired[str]
365
- compatibleVersions: NotRequired[List[str]]
362
+ compatibleVersions: NotRequired[list[str]]
366
363
 
367
364
 
368
365
  class AddonIssueTypeDef(TypedDict):
369
366
  code: NotRequired[AddonIssueCodeType]
370
367
  message: NotRequired[str]
371
- resourceIds: NotRequired[List[str]]
368
+ resourceIds: NotRequired[list[str]]
372
369
 
373
370
 
374
371
  class MarketplaceInformationTypeDef(TypedDict):
@@ -391,19 +388,19 @@ class AddonPodIdentityAssociationsTypeDef(TypedDict):
391
388
 
392
389
  class AddonPodIdentityConfigurationTypeDef(TypedDict):
393
390
  serviceAccount: NotRequired[str]
394
- recommendedManagedPolicies: NotRequired[List[str]]
391
+ recommendedManagedPolicies: NotRequired[list[str]]
395
392
 
396
393
 
397
394
  class CompatibilityTypeDef(TypedDict):
398
395
  clusterVersion: NotRequired[str]
399
- platformVersions: NotRequired[List[str]]
396
+ platformVersions: NotRequired[list[str]]
400
397
  defaultVersion: NotRequired[bool]
401
398
 
402
399
 
403
400
  class ResponseMetadataTypeDef(TypedDict):
404
401
  RequestId: str
405
402
  HTTPStatusCode: int
406
- HTTPHeaders: Dict[str, str]
403
+ HTTPHeaders: dict[str, str]
407
404
  RetryAttempts: int
408
405
  HostId: NotRequired[str]
409
406
 
@@ -440,12 +437,12 @@ class ClientStatTypeDef(TypedDict):
440
437
  class ClusterIssueTypeDef(TypedDict):
441
438
  code: NotRequired[ClusterIssueCodeType]
442
439
  message: NotRequired[str]
443
- resourceIds: NotRequired[List[str]]
440
+ resourceIds: NotRequired[list[str]]
444
441
 
445
442
 
446
443
  class ComputeConfigResponseTypeDef(TypedDict):
447
444
  enabled: NotRequired[bool]
448
- nodePools: NotRequired[List[str]]
445
+ nodePools: NotRequired[list[str]]
449
446
  nodeRoleArn: NotRequired[str]
450
447
 
451
448
 
@@ -457,18 +454,22 @@ class ConnectorConfigResponseTypeDef(TypedDict):
457
454
  roleArn: NotRequired[str]
458
455
 
459
456
 
457
+ class ControlPlaneScalingConfigTypeDef(TypedDict):
458
+ tier: NotRequired[ProvisionedControlPlaneTierType]
459
+
460
+
460
461
  class UpgradePolicyResponseTypeDef(TypedDict):
461
462
  supportType: NotRequired[SupportTypeType]
462
463
 
463
464
 
464
465
  class VpcConfigResponseTypeDef(TypedDict):
465
- subnetIds: NotRequired[List[str]]
466
- securityGroupIds: NotRequired[List[str]]
466
+ subnetIds: NotRequired[list[str]]
467
+ securityGroupIds: NotRequired[list[str]]
467
468
  clusterSecurityGroupId: NotRequired[str]
468
469
  vpcId: NotRequired[str]
469
470
  endpointPublicAccess: NotRequired[bool]
470
471
  endpointPrivateAccess: NotRequired[bool]
471
- publicAccessCidrs: NotRequired[List[str]]
472
+ publicAccessCidrs: NotRequired[list[str]]
472
473
 
473
474
 
474
475
  class ZonalShiftConfigResponseTypeDef(TypedDict):
@@ -593,7 +594,7 @@ class PodIdentityAssociationTypeDef(TypedDict):
593
594
  roleArn: NotRequired[str]
594
595
  associationArn: NotRequired[str]
595
596
  associationId: NotRequired[str]
596
- tags: NotRequired[Dict[str, str]]
597
+ tags: NotRequired[dict[str, str]]
597
598
  createdAt: NotRequired[datetime]
598
599
  modifiedAt: NotRequired[datetime]
599
600
  ownerArn: NotRequired[str]
@@ -775,18 +776,18 @@ class ProviderTypeDef(TypedDict):
775
776
  class ErrorDetailTypeDef(TypedDict):
776
777
  errorCode: NotRequired[ErrorCodeType]
777
778
  errorMessage: NotRequired[str]
778
- resourceIds: NotRequired[List[str]]
779
+ resourceIds: NotRequired[list[str]]
779
780
 
780
781
 
781
782
  class FargateProfileIssueTypeDef(TypedDict):
782
783
  code: NotRequired[FargateProfileIssueCodeType]
783
784
  message: NotRequired[str]
784
- resourceIds: NotRequired[List[str]]
785
+ resourceIds: NotRequired[list[str]]
785
786
 
786
787
 
787
788
  class FargateProfileSelectorOutputTypeDef(TypedDict):
788
789
  namespace: NotRequired[str]
789
- labels: NotRequired[Dict[str, str]]
790
+ labels: NotRequired[dict[str, str]]
790
791
 
791
792
 
792
793
  class FargateProfileSelectorTypeDef(TypedDict):
@@ -804,8 +805,8 @@ class OidcIdentityProviderConfigTypeDef(TypedDict):
804
805
  usernamePrefix: NotRequired[str]
805
806
  groupsClaim: NotRequired[str]
806
807
  groupsPrefix: NotRequired[str]
807
- requiredClaims: NotRequired[Dict[str, str]]
808
- tags: NotRequired[Dict[str, str]]
808
+ requiredClaims: NotRequired[dict[str, str]]
809
+ tags: NotRequired[dict[str, str]]
809
810
  status: NotRequired[ConfigStatusType]
810
811
 
811
812
 
@@ -827,7 +828,7 @@ class InsightsFilterTypeDef(TypedDict):
827
828
  class IssueTypeDef(TypedDict):
828
829
  code: NotRequired[NodegroupIssueCodeType]
829
830
  message: NotRequired[str]
830
- resourceIds: NotRequired[List[str]]
831
+ resourceIds: NotRequired[list[str]]
831
832
 
832
833
 
833
834
  class ListAccessEntriesRequestTypeDef(TypedDict):
@@ -917,7 +918,7 @@ class ListUpdatesRequestTypeDef(TypedDict):
917
918
  LogSetupOutputTypeDef = TypedDict(
918
919
  "LogSetupOutputTypeDef",
919
920
  {
920
- "types": NotRequired[List[LogTypeType]],
921
+ "types": NotRequired[list[LogTypeType]],
921
922
  "enabled": NotRequired[bool],
922
923
  },
923
924
  )
@@ -939,7 +940,7 @@ class NodeRepairConfigOverridesTypeDef(TypedDict):
939
940
 
940
941
  class RemoteAccessConfigOutputTypeDef(TypedDict):
941
942
  ec2SshKey: NotRequired[str]
942
- sourceSecurityGroups: NotRequired[List[str]]
943
+ sourceSecurityGroups: NotRequired[list[str]]
943
944
 
944
945
 
945
946
  class RemoteAccessConfigTypeDef(TypedDict):
@@ -948,11 +949,11 @@ class RemoteAccessConfigTypeDef(TypedDict):
948
949
 
949
950
 
950
951
  class RemoteNodeNetworkOutputTypeDef(TypedDict):
951
- cidrs: NotRequired[List[str]]
952
+ cidrs: NotRequired[list[str]]
952
953
 
953
954
 
954
955
  class RemotePodNetworkOutputTypeDef(TypedDict):
955
- cidrs: NotRequired[List[str]]
956
+ cidrs: NotRequired[list[str]]
956
957
 
957
958
 
958
959
  class RemoteNodeNetworkTypeDef(TypedDict):
@@ -1040,7 +1041,7 @@ AccessScopeUnionTypeDef = Union[AccessScopeTypeDef, AccessScopeOutputTypeDef]
1040
1041
 
1041
1042
 
1042
1043
  class AddonHealthTypeDef(TypedDict):
1043
- issues: NotRequired[List[AddonIssueTypeDef]]
1044
+ issues: NotRequired[list[AddonIssueTypeDef]]
1044
1045
 
1045
1046
 
1046
1047
  class CreateAddonRequestTypeDef(TypedDict):
@@ -1069,9 +1070,9 @@ class UpdateAddonRequestTypeDef(TypedDict):
1069
1070
 
1070
1071
  class AddonVersionInfoTypeDef(TypedDict):
1071
1072
  addonVersion: NotRequired[str]
1072
- architecture: NotRequired[List[str]]
1073
- computeTypes: NotRequired[List[str]]
1074
- compatibilities: NotRequired[List[CompatibilityTypeDef]]
1073
+ architecture: NotRequired[list[str]]
1074
+ computeTypes: NotRequired[list[str]]
1075
+ compatibilities: NotRequired[list[CompatibilityTypeDef]]
1075
1076
  requiresConfiguration: NotRequired[bool]
1076
1077
  requiresIamPermissions: NotRequired[bool]
1077
1078
 
@@ -1090,7 +1091,7 @@ class DescribeAddonConfigurationResponseTypeDef(TypedDict):
1090
1091
  addonName: str
1091
1092
  addonVersion: str
1092
1093
  configurationSchema: str
1093
- podIdentityConfiguration: List[AddonPodIdentityConfigurationTypeDef]
1094
+ podIdentityConfiguration: list[AddonPodIdentityConfigurationTypeDef]
1094
1095
  ResponseMetadata: ResponseMetadataTypeDef
1095
1096
 
1096
1097
 
@@ -1103,48 +1104,48 @@ class DescribeInsightsRefreshResponseTypeDef(TypedDict):
1103
1104
 
1104
1105
 
1105
1106
  class ListAccessEntriesResponseTypeDef(TypedDict):
1106
- accessEntries: List[str]
1107
+ accessEntries: list[str]
1107
1108
  ResponseMetadata: ResponseMetadataTypeDef
1108
1109
  nextToken: NotRequired[str]
1109
1110
 
1110
1111
 
1111
1112
  class ListAccessPoliciesResponseTypeDef(TypedDict):
1112
- accessPolicies: List[AccessPolicyTypeDef]
1113
+ accessPolicies: list[AccessPolicyTypeDef]
1113
1114
  ResponseMetadata: ResponseMetadataTypeDef
1114
1115
  nextToken: NotRequired[str]
1115
1116
 
1116
1117
 
1117
1118
  class ListAddonsResponseTypeDef(TypedDict):
1118
- addons: List[str]
1119
+ addons: list[str]
1119
1120
  ResponseMetadata: ResponseMetadataTypeDef
1120
1121
  nextToken: NotRequired[str]
1121
1122
 
1122
1123
 
1123
1124
  class ListClustersResponseTypeDef(TypedDict):
1124
- clusters: List[str]
1125
+ clusters: list[str]
1125
1126
  ResponseMetadata: ResponseMetadataTypeDef
1126
1127
  nextToken: NotRequired[str]
1127
1128
 
1128
1129
 
1129
1130
  class ListFargateProfilesResponseTypeDef(TypedDict):
1130
- fargateProfileNames: List[str]
1131
+ fargateProfileNames: list[str]
1131
1132
  ResponseMetadata: ResponseMetadataTypeDef
1132
1133
  nextToken: NotRequired[str]
1133
1134
 
1134
1135
 
1135
1136
  class ListNodegroupsResponseTypeDef(TypedDict):
1136
- nodegroups: List[str]
1137
+ nodegroups: list[str]
1137
1138
  ResponseMetadata: ResponseMetadataTypeDef
1138
1139
  nextToken: NotRequired[str]
1139
1140
 
1140
1141
 
1141
1142
  class ListTagsForResourceResponseTypeDef(TypedDict):
1142
- tags: Dict[str, str]
1143
+ tags: dict[str, str]
1143
1144
  ResponseMetadata: ResponseMetadataTypeDef
1144
1145
 
1145
1146
 
1146
1147
  class ListUpdatesResponseTypeDef(TypedDict):
1147
- updateIds: List[str]
1148
+ updateIds: list[str]
1148
1149
  ResponseMetadata: ResponseMetadataTypeDef
1149
1150
  nextToken: NotRequired[str]
1150
1151
 
@@ -1168,7 +1169,7 @@ class AssociateIdentityProviderConfigRequestTypeDef(TypedDict):
1168
1169
 
1169
1170
 
1170
1171
  class NodegroupResourcesTypeDef(TypedDict):
1171
- autoScalingGroups: NotRequired[List[AutoScalingGroupTypeDef]]
1172
+ autoScalingGroups: NotRequired[list[AutoScalingGroupTypeDef]]
1172
1173
  remoteAccessSecurityGroup: NotRequired[str]
1173
1174
 
1174
1175
 
@@ -1185,15 +1186,15 @@ class DeprecationDetailTypeDef(TypedDict):
1185
1186
  replacedWith: NotRequired[str]
1186
1187
  stopServingVersion: NotRequired[str]
1187
1188
  startServingReplacementVersion: NotRequired[str]
1188
- clientStats: NotRequired[List[ClientStatTypeDef]]
1189
+ clientStats: NotRequired[list[ClientStatTypeDef]]
1189
1190
 
1190
1191
 
1191
1192
  class ClusterHealthTypeDef(TypedDict):
1192
- issues: NotRequired[List[ClusterIssueTypeDef]]
1193
+ issues: NotRequired[list[ClusterIssueTypeDef]]
1193
1194
 
1194
1195
 
1195
1196
  class DescribeClusterVersionsResponseTypeDef(TypedDict):
1196
- clusterVersions: List[ClusterVersionInformationTypeDef]
1197
+ clusterVersions: list[ClusterVersionInformationTypeDef]
1197
1198
  ResponseMetadata: ResponseMetadataTypeDef
1198
1199
  nextToken: NotRequired[str]
1199
1200
 
@@ -1212,7 +1213,7 @@ class OutpostConfigRequestTypeDef(TypedDict):
1212
1213
 
1213
1214
 
1214
1215
  class OutpostConfigResponseTypeDef(TypedDict):
1215
- outpostArns: List[str]
1216
+ outpostArns: list[str]
1216
1217
  controlPlaneInstanceType: str
1217
1218
  controlPlanePlacement: NotRequired[ControlPlanePlacementResponseTypeDef]
1218
1219
 
@@ -1403,7 +1404,7 @@ class DisassociateIdentityProviderConfigRequestTypeDef(TypedDict):
1403
1404
 
1404
1405
 
1405
1406
  class ListIdentityProviderConfigsResponseTypeDef(TypedDict):
1406
- identityProviderConfigs: List[IdentityProviderConfigTypeDef]
1407
+ identityProviderConfigs: list[IdentityProviderConfigTypeDef]
1407
1408
  ResponseMetadata: ResponseMetadataTypeDef
1408
1409
  nextToken: NotRequired[str]
1409
1410
 
@@ -1421,9 +1422,9 @@ EksAnywhereSubscriptionTypeDef = TypedDict(
1421
1422
  "term": NotRequired[EksAnywhereSubscriptionTermTypeDef],
1422
1423
  "status": NotRequired[str],
1423
1424
  "autoRenew": NotRequired[bool],
1424
- "licenseArns": NotRequired[List[str]],
1425
- "licenses": NotRequired[List[LicenseTypeDef]],
1426
- "tags": NotRequired[Dict[str, str]],
1425
+ "licenseArns": NotRequired[list[str]],
1426
+ "licenses": NotRequired[list[LicenseTypeDef]],
1427
+ "tags": NotRequired[dict[str, str]],
1427
1428
  },
1428
1429
  )
1429
1430
 
@@ -1442,7 +1443,7 @@ class KubernetesNetworkConfigResponseTypeDef(TypedDict):
1442
1443
 
1443
1444
 
1444
1445
  class EncryptionConfigOutputTypeDef(TypedDict):
1445
- resources: NotRequired[List[str]]
1446
+ resources: NotRequired[list[str]]
1446
1447
  provider: NotRequired[ProviderTypeDef]
1447
1448
 
1448
1449
 
@@ -1452,7 +1453,7 @@ class EncryptionConfigTypeDef(TypedDict):
1452
1453
 
1453
1454
 
1454
1455
  class FargateProfileHealthTypeDef(TypedDict):
1455
- issues: NotRequired[List[FargateProfileIssueTypeDef]]
1456
+ issues: NotRequired[list[FargateProfileIssueTypeDef]]
1456
1457
 
1457
1458
 
1458
1459
  FargateProfileSelectorUnionTypeDef = Union[
@@ -1507,17 +1508,17 @@ ListInsightsRequestTypeDef = TypedDict(
1507
1508
 
1508
1509
 
1509
1510
  class NodegroupHealthTypeDef(TypedDict):
1510
- issues: NotRequired[List[IssueTypeDef]]
1511
+ issues: NotRequired[list[IssueTypeDef]]
1511
1512
 
1512
1513
 
1513
1514
  class ListPodIdentityAssociationsResponseTypeDef(TypedDict):
1514
- associations: List[PodIdentityAssociationSummaryTypeDef]
1515
+ associations: list[PodIdentityAssociationSummaryTypeDef]
1515
1516
  ResponseMetadata: ResponseMetadataTypeDef
1516
1517
  nextToken: NotRequired[str]
1517
1518
 
1518
1519
 
1519
1520
  class LoggingOutputTypeDef(TypedDict):
1520
- clusterLogging: NotRequired[List[LogSetupOutputTypeDef]]
1521
+ clusterLogging: NotRequired[list[LogSetupOutputTypeDef]]
1521
1522
 
1522
1523
 
1523
1524
  class LoggingTypeDef(TypedDict):
@@ -1530,7 +1531,7 @@ class NodeRepairConfigOutputTypeDef(TypedDict):
1530
1531
  maxUnhealthyNodeThresholdPercentage: NotRequired[int]
1531
1532
  maxParallelNodesRepairedCount: NotRequired[int]
1532
1533
  maxParallelNodesRepairedPercentage: NotRequired[int]
1533
- nodeRepairConfigOverrides: NotRequired[List[NodeRepairConfigOverridesTypeDef]]
1534
+ nodeRepairConfigOverrides: NotRequired[list[NodeRepairConfigOverridesTypeDef]]
1534
1535
 
1535
1536
 
1536
1537
  class NodeRepairConfigTypeDef(TypedDict):
@@ -1546,8 +1547,8 @@ RemoteAccessConfigUnionTypeDef = Union[RemoteAccessConfigTypeDef, RemoteAccessCo
1546
1547
 
1547
1548
 
1548
1549
  class RemoteNetworkConfigResponseTypeDef(TypedDict):
1549
- remoteNodeNetworks: NotRequired[List[RemoteNodeNetworkOutputTypeDef]]
1550
- remotePodNetworks: NotRequired[List[RemotePodNetworkOutputTypeDef]]
1550
+ remoteNodeNetworks: NotRequired[list[RemoteNodeNetworkOutputTypeDef]]
1551
+ remotePodNetworks: NotRequired[list[RemotePodNetworkOutputTypeDef]]
1551
1552
 
1552
1553
 
1553
1554
  RemoteNodeNetworkUnionTypeDef = Union[RemoteNodeNetworkTypeDef, RemoteNodeNetworkOutputTypeDef]
@@ -1558,9 +1559,9 @@ UpdateTypeDef = TypedDict(
1558
1559
  "id": NotRequired[str],
1559
1560
  "status": NotRequired[UpdateStatusType],
1560
1561
  "type": NotRequired[UpdateTypeType],
1561
- "params": NotRequired[List[UpdateParamTypeDef]],
1562
+ "params": NotRequired[list[UpdateParamTypeDef]],
1562
1563
  "createdAt": NotRequired[datetime],
1563
- "errors": NotRequired[List[ErrorDetailTypeDef]],
1564
+ "errors": NotRequired[list[ErrorDetailTypeDef]],
1564
1565
  },
1565
1566
  )
1566
1567
 
@@ -1575,7 +1576,7 @@ class AssociateAccessPolicyResponseTypeDef(TypedDict):
1575
1576
  class ListAssociatedAccessPoliciesResponseTypeDef(TypedDict):
1576
1577
  clusterName: str
1577
1578
  principalArn: str
1578
- associatedAccessPolicies: List[AssociatedAccessPolicyTypeDef]
1579
+ associatedAccessPolicies: list[AssociatedAccessPolicyTypeDef]
1579
1580
  ResponseMetadata: ResponseMetadataTypeDef
1580
1581
  nextToken: NotRequired[str]
1581
1582
 
@@ -1597,12 +1598,12 @@ class AddonTypeDef(TypedDict):
1597
1598
  createdAt: NotRequired[datetime]
1598
1599
  modifiedAt: NotRequired[datetime]
1599
1600
  serviceAccountRoleArn: NotRequired[str]
1600
- tags: NotRequired[Dict[str, str]]
1601
+ tags: NotRequired[dict[str, str]]
1601
1602
  publisher: NotRequired[str]
1602
1603
  owner: NotRequired[str]
1603
1604
  marketplaceInformation: NotRequired[MarketplaceInformationTypeDef]
1604
1605
  configurationValues: NotRequired[str]
1605
- podIdentityAssociations: NotRequired[List[str]]
1606
+ podIdentityAssociations: NotRequired[list[str]]
1606
1607
  namespaceConfig: NotRequired[AddonNamespaceConfigResponseTypeDef]
1607
1608
 
1608
1609
 
@@ -1611,7 +1612,7 @@ AddonInfoTypeDef = TypedDict(
1611
1612
  {
1612
1613
  "addonName": NotRequired[str],
1613
1614
  "type": NotRequired[str],
1614
- "addonVersions": NotRequired[List[AddonVersionInfoTypeDef]],
1615
+ "addonVersions": NotRequired[list[AddonVersionInfoTypeDef]],
1615
1616
  "publisher": NotRequired[str],
1616
1617
  "owner": NotRequired[str],
1617
1618
  "marketplaceInformation": NotRequired[MarketplaceInformationTypeDef],
@@ -1621,8 +1622,8 @@ AddonInfoTypeDef = TypedDict(
1621
1622
 
1622
1623
 
1623
1624
  class InsightCategorySpecificSummaryTypeDef(TypedDict):
1624
- deprecationDetails: NotRequired[List[DeprecationDetailTypeDef]]
1625
- addonCompatibilityDetails: NotRequired[List[AddonCompatibilityDetailTypeDef]]
1625
+ deprecationDetails: NotRequired[list[DeprecationDetailTypeDef]]
1626
+ addonCompatibilityDetails: NotRequired[list[AddonCompatibilityDetailTypeDef]]
1626
1627
 
1627
1628
 
1628
1629
  class CreateEksAnywhereSubscriptionResponseTypeDef(TypedDict):
@@ -1641,7 +1642,7 @@ class DescribeEksAnywhereSubscriptionResponseTypeDef(TypedDict):
1641
1642
 
1642
1643
 
1643
1644
  class ListEksAnywhereSubscriptionsResponseTypeDef(TypedDict):
1644
- subscriptions: List[EksAnywhereSubscriptionTypeDef]
1645
+ subscriptions: list[EksAnywhereSubscriptionTypeDef]
1645
1646
  ResponseMetadata: ResponseMetadataTypeDef
1646
1647
  nextToken: NotRequired[str]
1647
1648
 
@@ -1660,10 +1661,10 @@ class FargateProfileTypeDef(TypedDict):
1660
1661
  clusterName: NotRequired[str]
1661
1662
  createdAt: NotRequired[datetime]
1662
1663
  podExecutionRoleArn: NotRequired[str]
1663
- subnets: NotRequired[List[str]]
1664
- selectors: NotRequired[List[FargateProfileSelectorOutputTypeDef]]
1664
+ subnets: NotRequired[list[str]]
1665
+ selectors: NotRequired[list[FargateProfileSelectorOutputTypeDef]]
1665
1666
  status: NotRequired[FargateProfileStatusType]
1666
- tags: NotRequired[Dict[str, str]]
1667
+ tags: NotRequired[dict[str, str]]
1667
1668
  health: NotRequired[FargateProfileHealthTypeDef]
1668
1669
 
1669
1670
 
@@ -1683,7 +1684,7 @@ class DescribeIdentityProviderConfigResponseTypeDef(TypedDict):
1683
1684
 
1684
1685
 
1685
1686
  class ListInsightsResponseTypeDef(TypedDict):
1686
- insights: List[InsightSummaryTypeDef]
1687
+ insights: list[InsightSummaryTypeDef]
1687
1688
  ResponseMetadata: ResponseMetadataTypeDef
1688
1689
  nextToken: NotRequired[str]
1689
1690
 
@@ -1702,20 +1703,20 @@ class NodegroupTypeDef(TypedDict):
1702
1703
  status: NotRequired[NodegroupStatusType]
1703
1704
  capacityType: NotRequired[CapacityTypesType]
1704
1705
  scalingConfig: NotRequired[NodegroupScalingConfigTypeDef]
1705
- instanceTypes: NotRequired[List[str]]
1706
- subnets: NotRequired[List[str]]
1706
+ instanceTypes: NotRequired[list[str]]
1707
+ subnets: NotRequired[list[str]]
1707
1708
  remoteAccess: NotRequired[RemoteAccessConfigOutputTypeDef]
1708
1709
  amiType: NotRequired[AMITypesType]
1709
1710
  nodeRole: NotRequired[str]
1710
- labels: NotRequired[Dict[str, str]]
1711
- taints: NotRequired[List[TaintTypeDef]]
1711
+ labels: NotRequired[dict[str, str]]
1712
+ taints: NotRequired[list[TaintTypeDef]]
1712
1713
  resources: NotRequired[NodegroupResourcesTypeDef]
1713
1714
  diskSize: NotRequired[int]
1714
1715
  health: NotRequired[NodegroupHealthTypeDef]
1715
1716
  updateConfig: NotRequired[NodegroupUpdateConfigTypeDef]
1716
1717
  nodeRepairConfig: NotRequired[NodeRepairConfigOutputTypeDef]
1717
1718
  launchTemplate: NotRequired[LaunchTemplateSpecificationTypeDef]
1718
- tags: NotRequired[Dict[str, str]]
1719
+ tags: NotRequired[dict[str, str]]
1719
1720
 
1720
1721
 
1721
1722
  NodeRepairConfigUnionTypeDef = Union[NodeRepairConfigTypeDef, NodeRepairConfigOutputTypeDef]
@@ -1736,8 +1737,8 @@ ClusterTypeDef = TypedDict(
1736
1737
  "certificateAuthority": NotRequired[CertificateTypeDef],
1737
1738
  "clientRequestToken": NotRequired[str],
1738
1739
  "platformVersion": NotRequired[str],
1739
- "tags": NotRequired[Dict[str, str]],
1740
- "encryptionConfig": NotRequired[List[EncryptionConfigOutputTypeDef]],
1740
+ "tags": NotRequired[dict[str, str]],
1741
+ "encryptionConfig": NotRequired[list[EncryptionConfigOutputTypeDef]],
1741
1742
  "connectorConfig": NotRequired[ConnectorConfigResponseTypeDef],
1742
1743
  "id": NotRequired[str],
1743
1744
  "health": NotRequired[ClusterHealthTypeDef],
@@ -1749,6 +1750,7 @@ ClusterTypeDef = TypedDict(
1749
1750
  "computeConfig": NotRequired[ComputeConfigResponseTypeDef],
1750
1751
  "storageConfig": NotRequired[StorageConfigResponseTypeDef],
1751
1752
  "deletionProtection": NotRequired[bool],
1753
+ "controlPlaneScalingConfig": NotRequired[ControlPlaneScalingConfigTypeDef],
1752
1754
  },
1753
1755
  )
1754
1756
 
@@ -1765,7 +1767,7 @@ class AssociateEncryptionConfigResponseTypeDef(TypedDict):
1765
1767
 
1766
1768
  class AssociateIdentityProviderConfigResponseTypeDef(TypedDict):
1767
1769
  update: UpdateTypeDef
1768
- tags: Dict[str, str]
1770
+ tags: dict[str, str]
1769
1771
  ResponseMetadata: ResponseMetadataTypeDef
1770
1772
 
1771
1773
 
@@ -1820,7 +1822,7 @@ class DescribeAddonResponseTypeDef(TypedDict):
1820
1822
 
1821
1823
 
1822
1824
  class DescribeAddonVersionsResponseTypeDef(TypedDict):
1823
- addons: List[AddonInfoTypeDef]
1825
+ addons: list[AddonInfoTypeDef]
1824
1826
  ResponseMetadata: ResponseMetadataTypeDef
1825
1827
  nextToken: NotRequired[str]
1826
1828
 
@@ -1837,8 +1839,8 @@ InsightTypeDef = TypedDict(
1837
1839
  "description": NotRequired[str],
1838
1840
  "insightStatus": NotRequired[InsightStatusTypeDef],
1839
1841
  "recommendation": NotRequired[str],
1840
- "additionalInfo": NotRequired[Dict[str, str]],
1841
- "resources": NotRequired[List[InsightResourceDetailTypeDef]],
1842
+ "additionalInfo": NotRequired[dict[str, str]],
1843
+ "resources": NotRequired[list[InsightResourceDetailTypeDef]],
1842
1844
  "categorySpecificSummary": NotRequired[InsightCategorySpecificSummaryTypeDef],
1843
1845
  },
1844
1846
  )
@@ -1957,6 +1959,7 @@ class CreateClusterRequestTypeDef(TypedDict):
1957
1959
  computeConfig: NotRequired[ComputeConfigRequestTypeDef]
1958
1960
  storageConfig: NotRequired[StorageConfigRequestTypeDef]
1959
1961
  deletionProtection: NotRequired[bool]
1962
+ controlPlaneScalingConfig: NotRequired[ControlPlaneScalingConfigTypeDef]
1960
1963
 
1961
1964
 
1962
1965
  class UpdateClusterConfigRequestTypeDef(TypedDict):
@@ -1972,6 +1975,7 @@ class UpdateClusterConfigRequestTypeDef(TypedDict):
1972
1975
  storageConfig: NotRequired[StorageConfigRequestTypeDef]
1973
1976
  remoteNetworkConfig: NotRequired[RemoteNetworkConfigRequestTypeDef]
1974
1977
  deletionProtection: NotRequired[bool]
1978
+ controlPlaneScalingConfig: NotRequired[ControlPlaneScalingConfigTypeDef]
1975
1979
 
1976
1980
 
1977
1981
  class DescribeInsightResponseTypeDef(TypedDict):