@aws-sdk/client-eks 3.45.0 → 3.47.2

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.
Files changed (42) hide show
  1. package/CHANGELOG.md +45 -0
  2. package/README.md +10 -10
  3. package/dist-cjs/endpoints.js +0 -24
  4. package/dist-cjs/models/models_0.js +8 -81
  5. package/dist-cjs/protocols/Aws_restJson1.js +3 -0
  6. package/dist-cjs/runtimeConfig.browser.js +7 -2
  7. package/dist-cjs/runtimeConfig.js +9 -3
  8. package/dist-es/endpoints.js +0 -24
  9. package/dist-es/models/models_0.js +5 -52
  10. package/dist-es/protocols/Aws_restJson1.js +3 -1
  11. package/dist-es/runtimeConfig.browser.js +12 -3
  12. package/dist-es/runtimeConfig.js +13 -6
  13. package/dist-types/EKS.d.ts +112 -99
  14. package/dist-types/EKSClient.d.ts +15 -11
  15. package/dist-types/commands/CreateClusterCommand.d.ts +2 -1
  16. package/dist-types/commands/CreateFargateProfileCommand.d.ts +28 -24
  17. package/dist-types/commands/CreateNodegroupCommand.d.ts +9 -8
  18. package/dist-types/commands/DeleteClusterCommand.d.ts +2 -2
  19. package/dist-types/commands/DeleteFargateProfileCommand.d.ts +8 -7
  20. package/dist-types/commands/DeregisterClusterCommand.d.ts +2 -1
  21. package/dist-types/commands/DescribeUpdateCommand.d.ts +2 -2
  22. package/dist-types/commands/DisassociateIdentityProviderConfigCommand.d.ts +2 -2
  23. package/dist-types/commands/ListClustersCommand.d.ts +2 -1
  24. package/dist-types/commands/ListFargateProfilesCommand.d.ts +2 -2
  25. package/dist-types/commands/ListNodegroupsCommand.d.ts +3 -2
  26. package/dist-types/commands/ListUpdatesCommand.d.ts +2 -2
  27. package/dist-types/commands/RegisterClusterCommand.d.ts +9 -5
  28. package/dist-types/commands/TagResourceCommand.d.ts +3 -4
  29. package/dist-types/commands/UpdateClusterConfigCommand.d.ts +12 -11
  30. package/dist-types/commands/UpdateClusterVersionCommand.d.ts +3 -4
  31. package/dist-types/commands/UpdateNodegroupConfigCommand.d.ts +4 -5
  32. package/dist-types/commands/UpdateNodegroupVersionCommand.d.ts +7 -6
  33. package/dist-types/models/models_0.d.ts +252 -265
  34. package/dist-types/runtimeConfig.browser.d.ts +3 -2
  35. package/dist-types/runtimeConfig.d.ts +4 -3
  36. package/dist-types/runtimeConfig.native.d.ts +1 -0
  37. package/dist-types/ts3.4/EKSClient.d.ts +3 -1
  38. package/dist-types/ts3.4/models/models_0.d.ts +10 -52
  39. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -2
  40. package/dist-types/ts3.4/runtimeConfig.d.ts +4 -3
  41. package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -0
  42. package/package.json +40 -47
@@ -1,8 +1,8 @@
1
1
  import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
2
2
  /**
3
3
  * <p>You don't have permissions to perform the requested operation. The user or role that
4
- * is making the request must have at least one IAM permissions policy attached that
5
- * grants the required permissions. For more information, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access.html">Access
4
+ * is making the request must have at least one IAM permissions policy
5
+ * attached that grants the required permissions. For more information, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access.html">Access
6
6
  * Management</a> in the <i>IAM User Guide</i>. </p>
7
7
  */
8
8
  export interface AccessDeniedException extends __SmithyException, $MetadataBearer {
@@ -10,12 +10,6 @@ export interface AccessDeniedException extends __SmithyException, $MetadataBeare
10
10
  $fault: "client";
11
11
  message?: string;
12
12
  }
13
- export declare namespace AccessDeniedException {
14
- /**
15
- * @internal
16
- */
17
- const filterSensitiveLog: (obj: AccessDeniedException) => any;
18
- }
19
13
  export declare enum AddonIssueCode {
20
14
  ACCESS_DENIED = "AccessDenied",
21
15
  ADMISSION_REQUEST_DENIED = "AdmissionRequestDenied",
@@ -103,8 +97,8 @@ export interface Addon {
103
97
  */
104
98
  modifiedAt?: Date;
105
99
  /**
106
- * <p>The Amazon Resource Name (ARN) of the IAM role that is bound to the Kubernetes service account used
107
- * by the add-on.</p>
100
+ * <p>The Amazon Resource Name (ARN) of the IAM role that is bound to the Kubernetes service
101
+ * account used by the add-on.</p>
108
102
  */
109
103
  serviceAccountRoleArn?: string;
110
104
  /**
@@ -195,15 +189,15 @@ export declare namespace AddonInfo {
195
189
  }
196
190
  export declare type AMITypes = "AL2_ARM_64" | "AL2_x86_64" | "AL2_x86_64_GPU" | "BOTTLEROCKET_ARM_64" | "BOTTLEROCKET_x86_64" | "CUSTOM";
197
191
  /**
198
- * <p>Identifies the Key Management Service (KMS) key used to encrypt the secrets.</p>
192
+ * <p>Identifies the Key Management Service (KMS) key used to encrypt the
193
+ * secrets.</p>
199
194
  */
200
195
  export interface Provider {
201
196
  /**
202
197
  * <p>Amazon Resource Name (ARN) or alias of the KMS key. The KMS key must be symmetric, created in the same
203
198
  * region as the cluster, and if the KMS key was created in a different account, the user
204
199
  * must have access to the KMS key. For more information, see <a href="https://docs.aws.amazon.com/kms/latest/developerguide/key-policy-modifying-external-accounts.html">Allowing
205
- * Users in Other Accounts to Use a KMS key</a> in the <i>Key Management Service
206
- * Developer Guide</i>.</p>
200
+ * Users in Other Accounts to Use a KMS key</a> in the <i>Key Management Service Developer Guide</i>.</p>
207
201
  */
208
202
  keyArn?: string;
209
203
  }
@@ -222,7 +216,8 @@ export interface EncryptionConfig {
222
216
  */
223
217
  resources?: string[];
224
218
  /**
225
- * <p>Key Management Service (KMS) key. Either the ARN or the alias can be used.</p>
219
+ * <p>Key Management Service (KMS) key. Either the ARN or the alias can be
220
+ * used.</p>
226
221
  */
227
222
  provider?: Provider;
228
223
  }
@@ -307,7 +302,7 @@ export interface ErrorDetail {
307
302
  * <p>
308
303
  * <b>OperationNotPermitted</b>: The service role
309
304
  * associated with the cluster doesn't have the required access permissions for
310
- * Amazon EKS.</p>
305
+ * Amazon EKS.</p>
311
306
  * </li>
312
307
  * <li>
313
308
  * <p>
@@ -458,12 +453,6 @@ export interface ClientException extends __SmithyException, $MetadataBearer {
458
453
  addonName?: string;
459
454
  message?: string;
460
455
  }
461
- export declare namespace ClientException {
462
- /**
463
- * @internal
464
- */
465
- const filterSensitiveLog: (obj: ClientException) => any;
466
- }
467
456
  /**
468
457
  * <p>The specified parameter is invalid. Review the available parameters for the API
469
458
  * request.</p>
@@ -486,12 +475,6 @@ export interface InvalidParameterException extends __SmithyException, $MetadataB
486
475
  addonName?: string;
487
476
  message?: string;
488
477
  }
489
- export declare namespace InvalidParameterException {
490
- /**
491
- * @internal
492
- */
493
- const filterSensitiveLog: (obj: InvalidParameterException) => any;
494
- }
495
478
  /**
496
479
  * <p>The request is invalid given the state of the cluster. Check the state of the cluster
497
480
  * and the associated operations.</p>
@@ -510,12 +493,6 @@ export interface InvalidRequestException extends __SmithyException, $MetadataBea
510
493
  addonName?: string;
511
494
  message?: string;
512
495
  }
513
- export declare namespace InvalidRequestException {
514
- /**
515
- * @internal
516
- */
517
- const filterSensitiveLog: (obj: InvalidRequestException) => any;
518
- }
519
496
  /**
520
497
  * <p>The specified resource is in use.</p>
521
498
  */
@@ -533,12 +510,6 @@ export interface ResourceInUseException extends __SmithyException, $MetadataBear
533
510
  addonName?: string;
534
511
  message?: string;
535
512
  }
536
- export declare namespace ResourceInUseException {
537
- /**
538
- * @internal
539
- */
540
- const filterSensitiveLog: (obj: ResourceInUseException) => any;
541
- }
542
513
  /**
543
514
  * <p>The specified resource could not be found. You can view your available clusters with
544
515
  * <a>ListClusters</a>. You can view your available managed node groups with
@@ -563,12 +534,6 @@ export interface ResourceNotFoundException extends __SmithyException, $MetadataB
563
534
  addonName?: string;
564
535
  message?: string;
565
536
  }
566
- export declare namespace ResourceNotFoundException {
567
- /**
568
- * @internal
569
- */
570
- const filterSensitiveLog: (obj: ResourceNotFoundException) => any;
571
- }
572
537
  /**
573
538
  * <p>These errors are usually caused by a server-side issue.</p>
574
539
  */
@@ -586,12 +551,6 @@ export interface ServerException extends __SmithyException, $MetadataBearer {
586
551
  addonName?: string;
587
552
  message?: string;
588
553
  }
589
- export declare namespace ServerException {
590
- /**
591
- * @internal
592
- */
593
- const filterSensitiveLog: (obj: ServerException) => any;
594
- }
595
554
  /**
596
555
  * <p>An object representing an OpenID Connect (OIDC) configuration. Before associating an
597
556
  * OIDC identity provider to your cluster, review the considerations in <a href="https://docs.aws.amazon.com/eks/latest/userguide/authenticate-oidc-identity-provider.html">Authenticating
@@ -648,8 +607,8 @@ export interface OidcIdentityProviderConfigRequest {
648
607
  /**
649
608
  * <p>The key value pairs that describe required claims in the identity token. If set, each
650
609
  * claim is verified to be present in the token with a matching value. For the maximum
651
- * number of claims that you can require, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/service-quotas.html">Amazon EKS service quotas</a> in the
652
- * <i>Amazon EKS User Guide</i>.</p>
610
+ * number of claims that you can require, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/service-quotas.html">Amazon EKS service
611
+ * quotas</a> in the <i>Amazon EKS User Guide</i>.</p>
653
612
  */
654
613
  requiredClaims?: {
655
614
  [key: string]: string;
@@ -709,11 +668,13 @@ export declare namespace AssociateIdentityProviderConfigResponse {
709
668
  const filterSensitiveLog: (obj: AssociateIdentityProviderConfigResponse) => any;
710
669
  }
711
670
  /**
712
- * <p>An Auto Scaling group that is associated with an Amazon EKS managed node group.</p>
671
+ * <p>An Auto Scaling group that is associated with an Amazon EKS managed node
672
+ * group.</p>
713
673
  */
714
674
  export interface AutoScalingGroup {
715
675
  /**
716
- * <p>The name of the Auto Scaling group associated with an Amazon EKS managed node group.</p>
676
+ * <p>The name of the Auto Scaling group associated with an Amazon EKS managed node
677
+ * group.</p>
717
678
  */
718
679
  name?: string;
719
680
  }
@@ -753,8 +714,8 @@ export interface CreateAddonRequest {
753
714
  */
754
715
  serviceAccountRoleArn?: string;
755
716
  /**
756
- * <p>How to resolve parameter value conflicts when migrating an existing add-on to an Amazon EKS
757
- * add-on.</p>
717
+ * <p>How to resolve parameter value conflicts when migrating an existing add-on to an
718
+ * Amazon EKS add-on.</p>
758
719
  */
759
720
  resolveConflicts?: ResolveConflicts | string;
760
721
  /**
@@ -789,16 +750,20 @@ export declare namespace CreateAddonResponse {
789
750
  */
790
751
  const filterSensitiveLog: (obj: CreateAddonResponse) => any;
791
752
  }
753
+ export declare enum IpFamily {
754
+ IPV4 = "ipv4",
755
+ IPV6 = "ipv6"
756
+ }
792
757
  /**
793
758
  * <p>The Kubernetes network configuration for the cluster.</p>
794
759
  */
795
760
  export interface KubernetesNetworkConfigRequest {
796
761
  /**
797
- * <p>The CIDR block to assign Kubernetes service IP addresses from. If you don't specify a
798
- * block, Kubernetes assigns addresses from either the 10.100.0.0/16 or 172.20.0.0/16 CIDR
799
- * blocks. We recommend that you specify a block that does not overlap with resources in
800
- * other networks that are peered or connected to your VPC. The block must meet the
801
- * following requirements:</p>
762
+ * <p>Don't specify a value if you select <code>ipv6</code> for <b>ipFamily</b>. The CIDR block to assign Kubernetes service IP addresses from.
763
+ * If you don't specify a block, Kubernetes assigns addresses from either the 10.100.0.0/16
764
+ * or 172.20.0.0/16 CIDR blocks. We recommend that you specify a block that does not
765
+ * overlap with resources in other networks that are peered or connected to your VPC. The
766
+ * block must meet the following requirements:</p>
802
767
  * <ul>
803
768
  * <li>
804
769
  * <p>Within one of the following private IP address blocks: 10.0.0.0/8,
@@ -818,6 +783,22 @@ export interface KubernetesNetworkConfigRequest {
818
783
  * </important>
819
784
  */
820
785
  serviceIpv4Cidr?: string;
786
+ /**
787
+ * <p>Specify which IP version is used to assign Kubernetes Pod and Service IP addresses. If
788
+ * you don't specify a value, <code>ipv4</code> is used by default. You can only specify an
789
+ * IP family when you create a cluster and can't change this value once the cluster is
790
+ * created. If you specify <code>ipv6</code>, the VPC and subnets that you specify for
791
+ * cluster creation must have both IPv4 and IPv6 CIDR blocks assigned to them. </p>
792
+ * <p>You can only specify <code>ipv6</code> for 1.21 and later clusters that use version
793
+ * 1.10.0 or later of the Amazon VPC CNI add-on. If you specify <code>ipv6</code>, then ensure
794
+ * that your VPC meets the requirements and that you're familiar with the considerations
795
+ * listed in <a href="https://docs.aws.amazon.com/eks/latest/userguide/cni-ipv6.html">Assigning
796
+ * IPv6 addresses to Pods and Services</a> in the Amazon EKS User Guide. If
797
+ * you specify <code>ipv6</code>, Kubernetes assigns Service and Pod addresses from the
798
+ * unique local address range (fc00::/7). You can't specify a custom IPv6 CIDR
799
+ * block.</p>
800
+ */
801
+ ipFamily?: IpFamily | string;
821
802
  }
822
803
  export declare namespace KubernetesNetworkConfigRequest {
823
804
  /**
@@ -842,9 +823,8 @@ export interface LogSetup {
842
823
  */
843
824
  types?: (LogType | string)[];
844
825
  /**
845
- * <p>If a log type is enabled, that log type exports its control plane logs to CloudWatch Logs. If a
846
- * log type isn't enabled, that log type doesn't export its control plane logs. Each
847
- * individual log type can be enabled or disabled independently.</p>
826
+ * <p>If a log type is enabled, that log type exports its control plane logs to CloudWatch Logs. If a log type isn't enabled, that log type doesn't export its control
827
+ * plane logs. Each individual log type can be enabled or disabled independently.</p>
848
828
  */
849
829
  enabled?: boolean;
850
830
  }
@@ -870,20 +850,22 @@ export declare namespace Logging {
870
850
  const filterSensitiveLog: (obj: Logging) => any;
871
851
  }
872
852
  /**
873
- * <p>An object representing the VPC configuration to use for an Amazon EKS cluster.</p>
853
+ * <p>An object representing the VPC configuration to use for an Amazon EKS
854
+ * cluster.</p>
874
855
  */
875
856
  export interface VpcConfigRequest {
876
857
  /**
877
- * <p>Specify subnets for your Amazon EKS nodes. Amazon EKS creates cross-account elastic network
878
- * interfaces in these subnets to allow communication between your nodes and the Kubernetes
879
- * control plane.</p>
858
+ * <p>Specify subnets for your Amazon EKS nodes. Amazon EKS creates
859
+ * cross-account elastic network interfaces in these subnets to allow communication between
860
+ * your nodes and the Kubernetes control plane.</p>
880
861
  */
881
862
  subnetIds?: string[];
882
863
  /**
883
864
  * <p>Specify one or more security groups for the cross-account elastic network interfaces
884
- * that Amazon EKS creates to use that allow communication between your nodes and the Kubernetes
885
- * control plane. If you don't specify any security groups, then familiarize yourself with
886
- * the difference between Amazon EKS defaults for clusters deployed with Kubernetes:</p>
865
+ * that Amazon EKS creates to use that allow communication between your nodes and
866
+ * the Kubernetes control plane. If you don't specify any security groups, then familiarize
867
+ * yourself with the difference between Amazon EKS defaults for clusters deployed
868
+ * with Kubernetes:</p>
887
869
  * <ul>
888
870
  * <li>
889
871
  * <p>1.14 Amazon EKS platform version <code>eks.2</code> and earlier</p>
@@ -903,8 +885,8 @@ export interface VpcConfigRequest {
903
885
  * Kubernetes API server endpoint. If you disable public access, your cluster's Kubernetes
904
886
  * API server can only receive requests from within the cluster VPC. The default value for
905
887
  * this parameter is <code>true</code>, which enables public access for your Kubernetes API
906
- * server. For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/cluster-endpoint.html">Amazon EKS cluster
907
- * endpoint access control</a> in the <i>
888
+ * server. For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/cluster-endpoint.html">Amazon EKS cluster endpoint access control</a> in the
889
+ * <i>
908
890
  * <i>Amazon EKS User Guide</i>
909
891
  * </i>.</p>
910
892
  */
@@ -914,10 +896,11 @@ export interface VpcConfigRequest {
914
896
  * Kubernetes API server endpoint. If you enable private access, Kubernetes API requests
915
897
  * from within your cluster's VPC use the private VPC endpoint. The default value for this
916
898
  * parameter is <code>false</code>, which disables private access for your Kubernetes API
917
- * server. If you disable private access and you have nodes or Fargate pods in the
918
- * cluster, then ensure that <code>publicAccessCidrs</code> includes the necessary CIDR
919
- * blocks for communication with the nodes or Fargate pods. For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/cluster-endpoint.html">Amazon EKS cluster
920
- * endpoint access control</a> in the <i>
899
+ * server. If you disable private access and you have nodes or Fargate
900
+ * pods in the cluster, then ensure that <code>publicAccessCidrs</code> includes the
901
+ * necessary CIDR blocks for communication with the nodes or Fargate pods.
902
+ * For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/cluster-endpoint.html">Amazon EKS cluster endpoint access control</a> in
903
+ * the <i>
921
904
  * <i>Amazon EKS User Guide</i>
922
905
  * </i>.</p>
923
906
  */
@@ -926,9 +909,10 @@ export interface VpcConfigRequest {
926
909
  * <p>The CIDR blocks that are allowed access to your cluster's public Kubernetes API server
927
910
  * endpoint. Communication to the endpoint from addresses outside of the CIDR blocks that
928
911
  * you specify is denied. The default value is <code>0.0.0.0/0</code>. If you've disabled
929
- * private endpoint access and you have nodes or Fargate pods in the cluster, then ensure
930
- * that you specify the necessary CIDR blocks. For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/cluster-endpoint.html">Amazon EKS cluster
931
- * endpoint access control</a> in the <i>
912
+ * private endpoint access and you have nodes or Fargate pods in the
913
+ * cluster, then ensure that you specify the necessary CIDR blocks. For more information,
914
+ * see <a href="https://docs.aws.amazon.com/eks/latest/userguide/cluster-endpoint.html">Amazon EKS cluster endpoint access control</a> in the
915
+ * <i>
932
916
  * <i>Amazon EKS User Guide</i>
933
917
  * </i>.</p>
934
918
  */
@@ -951,10 +935,9 @@ export interface CreateClusterRequest {
951
935
  */
952
936
  version?: string;
953
937
  /**
954
- * <p>The Amazon Resource Name (ARN) of the IAM role that provides permissions for the Kubernetes control
955
- * plane to make calls to Amazon Web Services API operations on your behalf. For more information, see
956
- * <a href="https://docs.aws.amazon.com/eks/latest/userguide/service_IAM_role.html">Amazon EKS
957
- * Service IAM Role</a> in the <i>
938
+ * <p>The Amazon Resource Name (ARN) of the IAM role that provides permissions for the
939
+ * Kubernetes control plane to make calls to Amazon Web Services API operations on your
940
+ * behalf. For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/service_IAM_role.html">Amazon EKS Service IAM Role</a> in the <i>
958
941
  * <i>Amazon EKS User Guide</i>
959
942
  * </i>.</p>
960
943
  */
@@ -974,14 +957,15 @@ export interface CreateClusterRequest {
974
957
  kubernetesNetworkConfig?: KubernetesNetworkConfigRequest;
975
958
  /**
976
959
  * <p>Enable or disable exporting the Kubernetes control plane logs for your cluster to
977
- * CloudWatch Logs. By default, cluster control plane logs aren't exported to CloudWatch Logs. For more
978
- * information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/control-plane-logs.html">Amazon EKS Cluster control plane logs</a> in the
960
+ * CloudWatch Logs. By default, cluster control plane logs aren't exported to
961
+ * CloudWatch Logs. For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/control-plane-logs.html">Amazon EKS Cluster control plane logs</a> in the
979
962
  * <i>
980
963
  * <i>Amazon EKS User Guide</i>
981
964
  * </i>.</p>
982
965
  * <note>
983
- * <p>CloudWatch Logs ingestion, archive storage, and data scanning rates apply to exported
984
- * control plane logs. For more information, see <a href="http://aws.amazon.com/cloudwatch/pricing/">CloudWatch Pricing</a>.</p>
966
+ * <p>CloudWatch Logs ingestion, archive storage, and data scanning rates apply to
967
+ * exported control plane logs. For more information, see <a href="http://aws.amazon.com/cloudwatch/pricing/">CloudWatch
968
+ * Pricing</a>.</p>
985
969
  * </note>
986
970
  */
987
971
  logging?: Logging;
@@ -1039,8 +1023,8 @@ export interface ConnectorConfigResponse {
1039
1023
  */
1040
1024
  activationCode?: string;
1041
1025
  /**
1042
- * <p>The expiration time of the connected cluster. The cluster's YAML file must be applied through the native
1043
- * provider.</p>
1026
+ * <p>The expiration time of the connected cluster. The cluster's YAML file must be applied
1027
+ * through the native provider.</p>
1044
1028
  */
1045
1029
  activationExpiry?: Date;
1046
1030
  /**
@@ -1048,7 +1032,8 @@ export interface ConnectorConfigResponse {
1048
1032
  */
1049
1033
  provider?: string;
1050
1034
  /**
1051
- * <p>The Amazon Resource Name (ARN) of the role to communicate with services from the connected Kubernetes cluster.</p>
1035
+ * <p>The Amazon Resource Name (ARN) of the role to communicate with services from the connected Kubernetes
1036
+ * cluster.</p>
1052
1037
  */
1053
1038
  roleArn?: string;
1054
1039
  }
@@ -1091,16 +1076,34 @@ export declare namespace Identity {
1091
1076
  const filterSensitiveLog: (obj: Identity) => any;
1092
1077
  }
1093
1078
  /**
1094
- * <p>The Kubernetes network configuration for the cluster.</p>
1079
+ * <p>The Kubernetes network configuration for the cluster. The response contains a value
1080
+ * for <b>serviceIpv6Cidr</b> or <b>serviceIpv4Cidr</b>, but not both. </p>
1095
1081
  */
1096
1082
  export interface KubernetesNetworkConfigResponse {
1097
1083
  /**
1098
- * <p>The CIDR block that Kubernetes service IP addresses are assigned from. If you didn't
1099
- * specify a CIDR block when you created the cluster, then Kubernetes assigns addresses
1100
- * from either the 10.100.0.0/16 or 172.20.0.0/16 CIDR blocks. If this was specified, then
1101
- * it was specified when the cluster was created and it cannot be changed.</p>
1084
+ * <p>The CIDR block that Kubernetes Pod and Service IP addresses are assigned from.
1085
+ * Kubernetes assigns addresses from an IPv4 CIDR block assigned to a subnet that the node
1086
+ * is in. If you didn't specify a CIDR block when you created the cluster, then Kubernetes
1087
+ * assigns addresses from either the 10.100.0.0/16 or 172.20.0.0/16 CIDR blocks. If this
1088
+ * was specified, then it was specified when the cluster was created and it can't be
1089
+ * changed.</p>
1102
1090
  */
1103
1091
  serviceIpv4Cidr?: string;
1092
+ /**
1093
+ * <p>The CIDR block that Kubernetes Pod and Service IP addresses are assigned from if you
1094
+ * created a 1.21 or later cluster with version 1.10.0 or later of the Amazon VPC CNI add-on and
1095
+ * specified <code>ipv6</code> for <b>ipFamily</b> when you
1096
+ * created the cluster. Kubernetes assigns addresses from the unique local address range
1097
+ * (fc00::/7).</p>
1098
+ */
1099
+ serviceIpv6Cidr?: string;
1100
+ /**
1101
+ * <p>The IP family used to assign Kubernetes Pod and Service IP addresses. The IP family is
1102
+ * always <code>ipv4</code>, unless you have a <code>1.21</code> or later cluster running
1103
+ * version 1.10.0 or later of the Amazon VPC CNI add-on and specified <code>ipv6</code> when you
1104
+ * created the cluster. </p>
1105
+ */
1106
+ ipFamily?: IpFamily | string;
1104
1107
  }
1105
1108
  export declare namespace KubernetesNetworkConfigResponse {
1106
1109
  /**
@@ -1109,7 +1112,8 @@ export declare namespace KubernetesNetworkConfigResponse {
1109
1112
  const filterSensitiveLog: (obj: KubernetesNetworkConfigResponse) => any;
1110
1113
  }
1111
1114
  /**
1112
- * <p>An object representing an Amazon EKS cluster VPC configuration response.</p>
1115
+ * <p>An object representing an Amazon EKS cluster VPC configuration
1116
+ * response.</p>
1113
1117
  */
1114
1118
  export interface VpcConfigResponse {
1115
1119
  /**
@@ -1123,8 +1127,9 @@ export interface VpcConfigResponse {
1123
1127
  */
1124
1128
  securityGroupIds?: string[];
1125
1129
  /**
1126
- * <p>The cluster security group that was created by Amazon EKS for the cluster. Managed node
1127
- * groups use this security group for control-plane-to-data-plane communication.</p>
1130
+ * <p>The cluster security group that was created by Amazon EKS for the cluster.
1131
+ * Managed node groups use this security group for control-plane-to-data-plane
1132
+ * communication.</p>
1128
1133
  */
1129
1134
  clusterSecurityGroupId?: string;
1130
1135
  /**
@@ -1132,19 +1137,21 @@ export interface VpcConfigResponse {
1132
1137
  */
1133
1138
  vpcId?: string;
1134
1139
  /**
1135
- * <p>This parameter indicates whether the Amazon EKS public API server endpoint is enabled. If
1136
- * the Amazon EKS public API server endpoint is disabled, your cluster's Kubernetes API server
1137
- * can only receive requests that originate from within the cluster VPC.</p>
1140
+ * <p>This parameter indicates whether the Amazon EKS public API server endpoint is
1141
+ * enabled. If the Amazon EKS public API server endpoint is disabled, your
1142
+ * cluster's Kubernetes API server can only receive requests that originate from within the
1143
+ * cluster VPC.</p>
1138
1144
  */
1139
1145
  endpointPublicAccess?: boolean;
1140
1146
  /**
1141
- * <p>This parameter indicates whether the Amazon EKS private API server endpoint is enabled. If
1142
- * the Amazon EKS private API server endpoint is enabled, Kubernetes API requests that originate
1143
- * from within your cluster's VPC use the private VPC endpoint instead of traversing the
1144
- * internet. If this value is disabled and you have nodes or Fargate pods in the cluster,
1145
- * then ensure that <code>publicAccessCidrs</code> includes the necessary CIDR blocks for
1146
- * communication with the nodes or Fargate pods. For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/cluster-endpoint.html">Amazon EKS cluster
1147
- * endpoint access control</a> in the <i>
1147
+ * <p>This parameter indicates whether the Amazon EKS private API server endpoint is
1148
+ * enabled. If the Amazon EKS private API server endpoint is enabled, Kubernetes
1149
+ * API requests that originate from within your cluster's VPC use the private VPC endpoint
1150
+ * instead of traversing the internet. If this value is disabled and you have nodes or
1151
+ * Fargate pods in the cluster, then ensure that
1152
+ * <code>publicAccessCidrs</code> includes the necessary CIDR blocks for communication
1153
+ * with the nodes or Fargate pods. For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/cluster-endpoint.html">Amazon EKS cluster endpoint access control</a> in the
1154
+ * <i>
1148
1155
  * <i>Amazon EKS User Guide</i>
1149
1156
  * </i>.</p>
1150
1157
  */
@@ -1153,9 +1160,9 @@ export interface VpcConfigResponse {
1153
1160
  * <p>The CIDR blocks that are allowed access to your cluster's public Kubernetes API server
1154
1161
  * endpoint. Communication to the endpoint from addresses outside of the listed CIDR blocks
1155
1162
  * is denied. The default value is <code>0.0.0.0/0</code>. If you've disabled private
1156
- * endpoint access and you have nodes or Fargate pods in the cluster, then ensure that the
1157
- * necessary CIDR blocks are listed. For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/cluster-endpoint.html">Amazon EKS cluster
1158
- * endpoint access control</a> in the <i>
1163
+ * endpoint access and you have nodes or Fargate pods in the cluster,
1164
+ * then ensure that the necessary CIDR blocks are listed. For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/cluster-endpoint.html">Amazon EKS cluster endpoint access control</a> in the
1165
+ * <i>
1159
1166
  * <i>Amazon EKS User Guide</i>
1160
1167
  * </i>.</p>
1161
1168
  */
@@ -1193,15 +1200,16 @@ export interface Cluster {
1193
1200
  */
1194
1201
  endpoint?: string;
1195
1202
  /**
1196
- * <p>The Amazon Resource Name (ARN) of the IAM role that provides permissions for the Kubernetes control
1197
- * plane to make calls to Amazon Web Services API operations on your behalf.</p>
1203
+ * <p>The Amazon Resource Name (ARN) of the IAM role that provides permissions for the
1204
+ * Kubernetes control plane to make calls to Amazon Web Services API operations on your
1205
+ * behalf.</p>
1198
1206
  */
1199
1207
  roleArn?: string;
1200
1208
  /**
1201
- * <p>The VPC configuration used by the cluster control plane. Amazon EKS VPC resources have
1202
- * specific requirements to work properly with Kubernetes. For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/network_reqs.html">Cluster VPC
1203
- * Considerations</a> and <a href="https://docs.aws.amazon.com/eks/latest/userguide/sec-group-reqs.html">Cluster Security Group Considerations</a> in the
1204
- * <i>Amazon EKS User Guide</i>.</p>
1209
+ * <p>The VPC configuration used by the cluster control plane. Amazon EKS VPC
1210
+ * resources have specific requirements to work properly with Kubernetes. For more
1211
+ * information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/network_reqs.html">Cluster VPC Considerations</a> and <a href="https://docs.aws.amazon.com/eks/latest/userguide/sec-group-reqs.html">Cluster Security
1212
+ * Group Considerations</a> in the <i>Amazon EKS User Guide</i>.</p>
1205
1213
  */
1206
1214
  resourcesVpcConfig?: VpcConfigResponse;
1207
1215
  /**
@@ -1230,8 +1238,8 @@ export interface Cluster {
1230
1238
  */
1231
1239
  clientRequestToken?: string;
1232
1240
  /**
1233
- * <p>The platform version of your Amazon EKS cluster. For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/platform-versions.html">Platform
1234
- * Versions</a> in the <i>
1241
+ * <p>The platform version of your Amazon EKS cluster. For more information, see
1242
+ * <a href="https://docs.aws.amazon.com/eks/latest/userguide/platform-versions.html">Platform Versions</a> in the <i>
1235
1243
  * <i>Amazon EKS User Guide</i>
1236
1244
  * </i>.</p>
1237
1245
  */
@@ -1288,12 +1296,6 @@ export interface ResourceLimitExceededException extends __SmithyException, $Meta
1288
1296
  nodegroupName?: string;
1289
1297
  message?: string;
1290
1298
  }
1291
- export declare namespace ResourceLimitExceededException {
1292
- /**
1293
- * @internal
1294
- */
1295
- const filterSensitiveLog: (obj: ResourceLimitExceededException) => any;
1296
- }
1297
1299
  /**
1298
1300
  * <p>The service is unavailable. Back off and retry the operation.</p>
1299
1301
  */
@@ -1302,16 +1304,11 @@ export interface ServiceUnavailableException extends __SmithyException, $Metadat
1302
1304
  $fault: "server";
1303
1305
  message?: string;
1304
1306
  }
1305
- export declare namespace ServiceUnavailableException {
1306
- /**
1307
- * @internal
1308
- */
1309
- const filterSensitiveLog: (obj: ServiceUnavailableException) => any;
1310
- }
1311
1307
  /**
1312
1308
  * <p>At least one of your specified cluster subnets is in an Availability Zone that does
1313
- * not support Amazon EKS. The exception output specifies the supported Availability Zones for
1314
- * your account, from which you can choose subnets for your cluster.</p>
1309
+ * not support Amazon EKS. The exception output specifies the supported
1310
+ * Availability Zones for your account, from which you can choose subnets for your
1311
+ * cluster.</p>
1315
1312
  */
1316
1313
  export interface UnsupportedAvailabilityZoneException extends __SmithyException, $MetadataBearer {
1317
1314
  name: "UnsupportedAvailabilityZoneException";
@@ -1331,12 +1328,6 @@ export interface UnsupportedAvailabilityZoneException extends __SmithyException,
1331
1328
  */
1332
1329
  validZones?: string[];
1333
1330
  }
1334
- export declare namespace UnsupportedAvailabilityZoneException {
1335
- /**
1336
- * @internal
1337
- */
1338
- const filterSensitiveLog: (obj: UnsupportedAvailabilityZoneException) => any;
1339
- }
1340
1331
  /**
1341
1332
  * <p>An object representing an Fargate profile selector.</p>
1342
1333
  */
@@ -1365,27 +1356,28 @@ export interface CreateFargateProfileRequest {
1365
1356
  */
1366
1357
  fargateProfileName: string | undefined;
1367
1358
  /**
1368
- * <p>The name of the Amazon EKS cluster to apply the Fargate profile to.</p>
1359
+ * <p>The name of the Amazon EKS cluster to apply the Fargate profile
1360
+ * to.</p>
1369
1361
  */
1370
1362
  clusterName: string | undefined;
1371
1363
  /**
1372
1364
  * <p>The Amazon Resource Name (ARN) of the pod execution role to use for pods that match the selectors in
1373
- * the Fargate profile. The pod execution role allows Fargate infrastructure to register with
1374
- * your cluster as a node, and it provides read access to Amazon ECR image repositories. For
1375
- * more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/pod-execution-role.html">Pod Execution Role</a> in the
1376
- * <i>Amazon EKS User Guide</i>.</p>
1365
+ * the Fargate profile. The pod execution role allows Fargate
1366
+ * infrastructure to register with your cluster as a node, and it provides read access to
1367
+ * Amazon ECR image repositories. For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/pod-execution-role.html">Pod
1368
+ * Execution Role</a> in the <i>Amazon EKS User Guide</i>.</p>
1377
1369
  */
1378
1370
  podExecutionRoleArn: string | undefined;
1379
1371
  /**
1380
- * <p>The IDs of subnets to launch your pods into. At this time, pods running on Fargate are
1381
- * not assigned public IP addresses, so only private subnets (with no direct route to an
1382
- * Internet Gateway) are accepted for this parameter.</p>
1372
+ * <p>The IDs of subnets to launch your pods into. At this time, pods running on Fargate are not assigned public IP addresses, so only private subnets (with
1373
+ * no direct route to an Internet Gateway) are accepted for this parameter.</p>
1383
1374
  */
1384
1375
  subnets?: string[];
1385
1376
  /**
1386
- * <p>The selectors to match for pods to use this Fargate profile. Each selector must have an
1387
- * associated namespace. Optionally, you can also specify labels for a namespace. You may
1388
- * specify up to five selectors in a Fargate profile.</p>
1377
+ * <p>The selectors to match for pods to use this Fargate profile. Each
1378
+ * selector must have an associated namespace. Optionally, you can also specify labels for
1379
+ * a namespace. You may specify up to five selectors in a Fargate
1380
+ * profile.</p>
1389
1381
  */
1390
1382
  selectors?: FargateProfileSelector[];
1391
1383
  /**
@@ -1423,11 +1415,13 @@ export interface FargateProfile {
1423
1415
  */
1424
1416
  fargateProfileArn?: string;
1425
1417
  /**
1426
- * <p>The name of the Amazon EKS cluster that the Fargate profile belongs to.</p>
1418
+ * <p>The name of the Amazon EKS cluster that the Fargate profile
1419
+ * belongs to.</p>
1427
1420
  */
1428
1421
  clusterName?: string;
1429
1422
  /**
1430
- * <p>The Unix epoch timestamp in seconds for when the Fargate profile was created.</p>
1423
+ * <p>The Unix epoch timestamp in seconds for when the Fargate profile was
1424
+ * created.</p>
1431
1425
  */
1432
1426
  createdAt?: Date;
1433
1427
  /**
@@ -1492,8 +1486,8 @@ export declare type CapacityTypes = "ON_DEMAND" | "SPOT";
1492
1486
  * </a>, or the node group deployment or
1493
1487
  * update will fail. For more information about launch templates, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateLaunchTemplate.html">
1494
1488
  * <code>CreateLaunchTemplate</code>
1495
- * </a> in the Amazon EC2 API Reference.
1496
- * For more information about using launch templates with Amazon EKS, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html">Launch template support</a> in the Amazon EKS User Guide.</p>
1489
+ * </a> in the Amazon EC2 API
1490
+ * Reference. For more information about using launch templates with Amazon EKS, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html">Launch template support</a> in the Amazon EKS User Guide.</p>
1497
1491
  * <p>Specify either <code>name</code> or <code>id</code>, but not both.</p>
1498
1492
  */
1499
1493
  export interface LaunchTemplateSpecification {
@@ -1523,16 +1517,15 @@ export declare namespace LaunchTemplateSpecification {
1523
1517
  */
1524
1518
  export interface RemoteAccessConfig {
1525
1519
  /**
1526
- * <p>The Amazon EC2 SSH key that provides access for SSH communication with the nodes in the
1527
- * managed node group. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-key-pairs.html">Amazon EC2 key
1528
- * pairs and Linux instances</a> in the <i>Amazon Elastic Compute Cloud User Guide for Linux Instances</i>.</p>
1520
+ * <p>The Amazon EC2 SSH key that provides access for SSH communication with the
1521
+ * nodes in the managed node group. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-key-pairs.html">Amazon EC2 key pairs and Linux instances</a> in the <i>Amazon Elastic Compute Cloud User Guide for Linux Instances</i>.</p>
1529
1522
  */
1530
1523
  ec2SshKey?: string;
1531
1524
  /**
1532
1525
  * <p>The security groups that are allowed SSH access (port 22) to the nodes. If you specify
1533
- * an Amazon EC2 SSH key but do not specify a source security group when you create a managed
1534
- * node group, then port 22 on the nodes is opened to the internet (0.0.0.0/0). For more
1535
- * information, see <a href="https://docs.aws.amazon.com/vpc/latest/userguide/VPC_SecurityGroups.html">Security Groups for Your VPC</a> in the
1526
+ * an Amazon EC2 SSH key but do not specify a source security group when you create
1527
+ * a managed node group, then port 22 on the nodes is opened to the internet (0.0.0.0/0).
1528
+ * For more information, see <a href="https://docs.aws.amazon.com/vpc/latest/userguide/VPC_SecurityGroups.html">Security Groups for Your VPC</a> in the
1536
1529
  * <i>Amazon Virtual Private Cloud User Guide</i>.</p>
1537
1530
  */
1538
1531
  sourceSecurityGroups?: string[];
@@ -1556,13 +1549,12 @@ export interface NodegroupScalingConfig {
1556
1549
  minSize?: number;
1557
1550
  /**
1558
1551
  * <p>The maximum number of nodes that the managed node group can scale out to. For
1559
- * information about the maximum number that you can specify, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/service-quotas.html">Amazon EKS service
1560
- * quotas</a> in the <i>Amazon EKS User Guide</i>.</p>
1552
+ * information about the maximum number that you can specify, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/service-quotas.html">Amazon EKS service quotas</a> in the <i>Amazon EKS User Guide</i>.</p>
1561
1553
  */
1562
1554
  maxSize?: number;
1563
1555
  /**
1564
1556
  * <p>The current number of nodes that the managed node group should maintain.</p>
1565
- * <important>
1557
+ * <important>
1566
1558
  * <p>If you use Cluster Autoscaler, you shouldn't change the desiredSize value
1567
1559
  * directly, as this can cause the Cluster Autoscaler to suddenly scale up or scale
1568
1560
  * down.</p>
@@ -1623,14 +1615,15 @@ export declare namespace Taint {
1623
1615
  */
1624
1616
  export interface NodegroupUpdateConfig {
1625
1617
  /**
1626
- * <p>The maximum number of nodes unavailable at once during a version update. Nodes will be updated in parallel.
1627
- * This value or <code>maxUnavailablePercentage</code> is required to have a value.The maximum number
1628
- * is 100.</p>
1618
+ * <p>The maximum number of nodes unavailable at once during a version update. Nodes will be
1619
+ * updated in parallel. This value or <code>maxUnavailablePercentage</code> is required to
1620
+ * have a value.The maximum number is 100.</p>
1629
1621
  */
1630
1622
  maxUnavailable?: number;
1631
1623
  /**
1632
- * <p>The maximum percentage of nodes unavailable during a version update. This percentage of nodes will be
1633
- * updated in parallel, up to 100 nodes at once. This value or <code>maxUnavailable</code> is required to have a value.</p>
1624
+ * <p>The maximum percentage of nodes unavailable during a version update. This percentage
1625
+ * of nodes will be updated in parallel, up to 100 nodes at once. This value or
1626
+ * <code>maxUnavailable</code> is required to have a value.</p>
1634
1627
  */
1635
1628
  maxUnavailablePercentage?: number;
1636
1629
  }
@@ -1686,9 +1679,10 @@ export interface CreateNodegroupRequest {
1686
1679
  * <p>The AMI type for your node group. GPU instance types should use the
1687
1680
  * <code>AL2_x86_64_GPU</code> AMI type. Non-GPU instances should use the
1688
1681
  * <code>AL2_x86_64</code> AMI type. Arm instances should use the
1689
- * <code>AL2_ARM_64</code> AMI type. All types use the Amazon EKS optimized Amazon Linux 2 AMI.
1690
- * If you specify <code>launchTemplate</code>, and your launch template uses a custom AMI, then don't specify <code>amiType</code>,
1691
- * or the node group deployment will fail. For more information about using launch templates with Amazon EKS, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html">Launch template support</a> in the Amazon EKS User Guide.</p>
1682
+ * <code>AL2_ARM_64</code> AMI type. All types use the Amazon EKS optimized
1683
+ * Amazon Linux 2 AMI. If you specify <code>launchTemplate</code>, and your launch template uses a custom AMI,
1684
+ * then don't specify <code>amiType</code>, or the node group deployment
1685
+ * will fail. For more information about using launch templates with Amazon EKS, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html">Launch template support</a> in the Amazon EKS User Guide.</p>
1692
1686
  */
1693
1687
  amiType?: AMITypes | string;
1694
1688
  /**
@@ -1698,15 +1692,15 @@ export interface CreateNodegroupRequest {
1698
1692
  */
1699
1693
  remoteAccess?: RemoteAccessConfig;
1700
1694
  /**
1701
- * <p>The Amazon Resource Name (ARN) of the IAM role to associate with your node group. The Amazon EKS worker
1702
- * node <code>kubelet</code> daemon makes calls to Amazon Web Services APIs on your behalf. Nodes receive
1703
- * permissions for these API calls through an IAM instance profile and associated
1704
- * policies. Before you can launch nodes and register them into a cluster, you must create
1705
- * an IAM role for those nodes to use when they are launched. For more information, see
1706
- * <a href="https://docs.aws.amazon.com/eks/latest/userguide/worker_node_IAM_role.html">Amazon EKS node IAM role</a> in the <i>
1695
+ * <p>The Amazon Resource Name (ARN) of the IAM role to associate with your node group. The
1696
+ * Amazon EKS worker node <code>kubelet</code> daemon makes calls to Amazon Web Services APIs on your behalf. Nodes receive permissions for these API calls
1697
+ * through an IAM instance profile and associated policies. Before you can
1698
+ * launch nodes and register them into a cluster, you must create an IAM
1699
+ * role for those nodes to use when they are launched. For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/worker_node_IAM_role.html">Amazon EKS node IAM role</a> in the
1700
+ * <i>
1707
1701
  * <i>Amazon EKS User Guide</i>
1708
- * </i>.
1709
- * If you specify <code>launchTemplate</code>, then don't specify <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_IamInstanceProfile.html">
1702
+ * </i>. If you specify <code>launchTemplate</code>, then don't specify
1703
+ * <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_IamInstanceProfile.html">
1710
1704
  * <code>IamInstanceProfile</code>
1711
1705
  * </a> in your launch template,
1712
1706
  * or the node group deployment will fail. For more information about using launch templates with Amazon EKS, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html">Launch template support</a> in the Amazon EKS User Guide.</p>
@@ -1760,12 +1754,11 @@ export interface CreateNodegroupRequest {
1760
1754
  */
1761
1755
  version?: string;
1762
1756
  /**
1763
- * <p>The AMI version of the Amazon EKS optimized AMI to use with your node group. By default,
1764
- * the latest available AMI version for the node group's current Kubernetes version is
1765
- * used. For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/eks-linux-ami-versions.html">Amazon EKS
1766
- * optimized Amazon Linux 2 AMI versions</a> in the <i>Amazon EKS User Guide</i>. If you specify <code>launchTemplate</code>,
1767
- * and your launch template uses a custom AMI, then don't specify <code>releaseVersion</code>, or the node group
1768
- * deployment will fail. For more information about using launch templates with Amazon EKS, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html">Launch template support</a> in the Amazon EKS User Guide.</p>
1757
+ * <p>The AMI version of the Amazon EKS optimized AMI to use with your node group.
1758
+ * By default, the latest available AMI version for the node group's current Kubernetes
1759
+ * version is used. For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/eks-linux-ami-versions.html">Amazon EKS optimized Amazon Linux 2 AMI versions</a> in the <i>Amazon EKS User Guide</i>.
1760
+ * If you specify <code>launchTemplate</code>, and your launch template uses a custom AMI, then don't specify <code>releaseVersion</code>,
1761
+ * or the node group deployment will fail. For more information about using launch templates with Amazon EKS, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html">Launch template support</a> in the Amazon EKS User Guide.</p>
1769
1762
  */
1770
1763
  releaseVersion?: string;
1771
1764
  }
@@ -1804,40 +1797,40 @@ export interface Issue {
1804
1797
  * <ul>
1805
1798
  * <li>
1806
1799
  * <p>
1807
- * <b>AccessDenied</b>: Amazon EKS or one or more of your
1808
- * managed nodes is failing to authenticate or authorize with your Kubernetes
1809
- * cluster API server.</p>
1800
+ * <b>AccessDenied</b>: Amazon EKS or one or
1801
+ * more of your managed nodes is failing to authenticate or authorize with your
1802
+ * Kubernetes cluster API server.</p>
1810
1803
  * </li>
1811
1804
  * <li>
1812
1805
  * <p>
1813
- * <b>AsgInstanceLaunchFailures</b>: Your Auto Scaling group is
1814
- * experiencing failures while attempting to launch instances.</p>
1806
+ * <b>AsgInstanceLaunchFailures</b>: Your Auto Scaling group is experiencing failures while attempting to launch
1807
+ * instances.</p>
1815
1808
  * </li>
1816
1809
  * <li>
1817
1810
  * <p>
1818
1811
  * <b>AutoScalingGroupNotFound</b>: We couldn't find
1819
- * the Auto Scaling group associated with the managed node group. You may be able to
1820
- * recreate an Auto Scaling group with the same settings to recover.</p>
1812
+ * the Auto Scaling group associated with the managed node group. You may be
1813
+ * able to recreate an Auto Scaling group with the same settings to
1814
+ * recover.</p>
1821
1815
  * </li>
1822
1816
  * <li>
1823
1817
  * <p>
1824
- * <b>ClusterUnreachable</b>: Amazon EKS or one or more of
1825
- * your managed nodes is unable to to communicate with your Kubernetes cluster API
1826
- * server. This can happen if there are network disruptions or if API servers are
1827
- * timing out processing requests. </p>
1818
+ * <b>ClusterUnreachable</b>: Amazon EKS or one
1819
+ * or more of your managed nodes is unable to to communicate with your Kubernetes
1820
+ * cluster API server. This can happen if there are network disruptions or if API
1821
+ * servers are timing out processing requests. </p>
1828
1822
  * </li>
1829
1823
  * <li>
1830
1824
  * <p>
1831
1825
  * <b>Ec2LaunchTemplateNotFound</b>: We couldn't find
1832
- * the Amazon EC2 launch template for your managed node group. You may be able to
1833
- * recreate a launch template with the same settings to recover.</p>
1826
+ * the Amazon EC2 launch template for your managed node group. You may be
1827
+ * able to recreate a launch template with the same settings to recover.</p>
1834
1828
  * </li>
1835
1829
  * <li>
1836
1830
  * <p>
1837
- * <b>Ec2LaunchTemplateVersionMismatch</b>: The Amazon EC2
1838
- * launch template version for your managed node group does not match the version
1839
- * that Amazon EKS created. You may be able to revert to the version that Amazon EKS created
1840
- * to recover.</p>
1831
+ * <b>Ec2LaunchTemplateVersionMismatch</b>: The Amazon EC2 launch template version for your managed node group does not
1832
+ * match the version that Amazon EKS created. You may be able to revert to
1833
+ * the version that Amazon EKS created to recover.</p>
1841
1834
  * </li>
1842
1835
  * <li>
1843
1836
  * <p>
@@ -1854,30 +1847,31 @@ export interface Issue {
1854
1847
  * <li>
1855
1848
  * <p>
1856
1849
  * <b>Ec2SubnetInvalidConfiguration</b>: One or more
1857
- * Amazon EC2 subnets specified for a node group do not automatically assign public IP
1858
- * addresses to instances launched into it. If you want your instances to be
1859
- * assigned a public IP address, then you need to enable the <code>auto-assign
1860
- * public IP address</code> setting for the subnet. See <a href="https://docs.aws.amazon.com/vpc/latest/userguide/vpc-ip-addressing.html#subnet-public-ip">Modifying
1850
+ * Amazon EC2 subnets specified for a node group do not automatically
1851
+ * assign public IP addresses to instances launched into it. If you want your
1852
+ * instances to be assigned a public IP address, then you need to enable the
1853
+ * <code>auto-assign public IP address</code> setting for the subnet. See
1854
+ * <a href="https://docs.aws.amazon.com/vpc/latest/userguide/vpc-ip-addressing.html#subnet-public-ip">Modifying
1861
1855
  * the public IPv4 addressing attribute for your subnet</a> in the Amazon
1862
1856
  * VPC User Guide.</p>
1863
1857
  * </li>
1864
1858
  * <li>
1865
1859
  * <p>
1866
1860
  * <b>IamInstanceProfileNotFound</b>: We couldn't find
1867
- * the IAM instance profile for your managed node group. You may be able to
1868
- * recreate an instance profile with the same settings to recover.</p>
1861
+ * the IAM instance profile for your managed node group. You may be
1862
+ * able to recreate an instance profile with the same settings to recover.</p>
1869
1863
  * </li>
1870
1864
  * <li>
1871
1865
  * <p>
1872
1866
  * <b>IamNodeRoleNotFound</b>: We couldn't find the
1873
- * IAM role for your managed node group. You may be able to recreate an IAM role
1874
- * with the same settings to recover.</p>
1867
+ * IAM role for your managed node group. You may be able to
1868
+ * recreate an IAM role with the same settings to recover.</p>
1875
1869
  * </li>
1876
1870
  * <li>
1877
1871
  * <p>
1878
- * <b>InstanceLimitExceeded</b>: Your Amazon Web Services account is
1879
- * unable to launch any more instances of the specified instance type. You may be
1880
- * able to request an Amazon EC2 instance limit increase to recover.</p>
1872
+ * <b>InstanceLimitExceeded</b>: Your Amazon Web Services account is unable to launch any more instances of the specified instance
1873
+ * type. You may be able to request an Amazon EC2 instance limit increase
1874
+ * to recover.</p>
1881
1875
  * </li>
1882
1876
  * <li>
1883
1877
  * <p>
@@ -1975,8 +1969,8 @@ export interface Nodegroup {
1975
1969
  /**
1976
1970
  * <p>If the node group was deployed using a launch template with a custom AMI, then this is
1977
1971
  * the AMI ID that was specified in the launch template. For node groups that weren't
1978
- * deployed using a launch template, this is the version of the Amazon EKS optimized AMI that
1979
- * the node group was deployed with.</p>
1972
+ * deployed using a launch template, this is the version of the Amazon EKS
1973
+ * optimized AMI that the node group was deployed with.</p>
1980
1974
  */
1981
1975
  releaseVersion?: string;
1982
1976
  /**
@@ -2026,16 +2020,17 @@ export interface Nodegroup {
2026
2020
  */
2027
2021
  amiType?: AMITypes | string;
2028
2022
  /**
2029
- * <p>The IAM role associated with your node group. The Amazon EKS node <code>kubelet</code>
2030
- * daemon makes calls to Amazon Web Services APIs on your behalf. Nodes receive permissions for these API
2031
- * calls through an IAM instance profile and associated policies.</p>
2023
+ * <p>The IAM role associated with your node group. The Amazon EKS
2024
+ * node <code>kubelet</code> daemon makes calls to Amazon Web Services APIs on your behalf.
2025
+ * Nodes receive permissions for these API calls through an IAM instance
2026
+ * profile and associated policies.</p>
2032
2027
  */
2033
2028
  nodeRole?: string;
2034
2029
  /**
2035
2030
  * <p>The Kubernetes labels applied to the nodes in the node group.</p>
2036
2031
  * <note>
2037
- * <p>Only labels that are applied with the Amazon EKS API are shown here. There may be other
2038
- * Kubernetes labels applied to the nodes in this group.</p>
2032
+ * <p>Only labels that are applied with the Amazon EKS API are shown here. There
2033
+ * may be other Kubernetes labels applied to the nodes in this group.</p>
2039
2034
  * </note>
2040
2035
  */
2041
2036
  labels?: {
@@ -2043,9 +2038,9 @@ export interface Nodegroup {
2043
2038
  };
2044
2039
  /**
2045
2040
  * <p>The Kubernetes taints to be applied to the nodes in the node group when they are
2046
- * created. Effect is one of <code>No_Schedule</code>, <code>Prefer_No_Schedule</code>, or <code>No_Execute</code>. Kubernetes taints
2047
- * can be used together with tolerations to control how workloads are scheduled to your
2048
- * nodes.</p>
2041
+ * created. Effect is one of <code>No_Schedule</code>, <code>Prefer_No_Schedule</code>, or
2042
+ * <code>No_Execute</code>. Kubernetes taints can be used together with tolerations to
2043
+ * control how workloads are scheduled to your nodes.</p>
2049
2044
  */
2050
2045
  taints?: Taint[];
2051
2046
  /**
@@ -2113,7 +2108,8 @@ export interface DeleteAddonRequest {
2113
2108
  */
2114
2109
  addonName: string | undefined;
2115
2110
  /**
2116
- * <p>Specifying this option preserves the add-on software on your cluster but Amazon EKS stops managing any settings for the add-on. If an IAM account is associated with the add-on, it is not removed.</p>
2111
+ * <p>Specifying this option preserves the add-on software on your cluster but Amazon EKS stops managing any settings for the add-on. If an IAM
2112
+ * account is associated with the add-on, it is not removed.</p>
2117
2113
  */
2118
2114
  preserve?: boolean;
2119
2115
  }
@@ -2162,7 +2158,8 @@ export declare namespace DeleteClusterResponse {
2162
2158
  }
2163
2159
  export interface DeleteFargateProfileRequest {
2164
2160
  /**
2165
- * <p>The name of the Amazon EKS cluster associated with the Fargate profile to delete.</p>
2161
+ * <p>The name of the Amazon EKS cluster associated with the Fargate
2162
+ * profile to delete.</p>
2166
2163
  */
2167
2164
  clusterName: string | undefined;
2168
2165
  /**
@@ -2190,7 +2187,8 @@ export declare namespace DeleteFargateProfileResponse {
2190
2187
  }
2191
2188
  export interface DeleteNodegroupRequest {
2192
2189
  /**
2193
- * <p>The name of the Amazon EKS cluster that is associated with your node group.</p>
2190
+ * <p>The name of the Amazon EKS cluster that is associated with your node
2191
+ * group.</p>
2194
2192
  */
2195
2193
  clusterName: string | undefined;
2196
2194
  /**
@@ -2353,7 +2351,8 @@ export declare namespace DescribeClusterResponse {
2353
2351
  }
2354
2352
  export interface DescribeFargateProfileRequest {
2355
2353
  /**
2356
- * <p>The name of the Amazon EKS cluster associated with the Fargate profile.</p>
2354
+ * <p>The name of the Amazon EKS cluster associated with the Fargate
2355
+ * profile.</p>
2357
2356
  */
2358
2357
  clusterName: string | undefined;
2359
2358
  /**
@@ -2766,7 +2765,8 @@ export declare namespace ListFargateProfilesRequest {
2766
2765
  }
2767
2766
  export interface ListFargateProfilesResponse {
2768
2767
  /**
2769
- * <p>A list of all of the Fargate profiles associated with the specified cluster.</p>
2768
+ * <p>A list of all of the Fargate profiles associated with the specified
2769
+ * cluster.</p>
2770
2770
  */
2771
2771
  fargateProfileNames?: string[];
2772
2772
  /**
@@ -2837,7 +2837,8 @@ export declare namespace ListIdentityProviderConfigsResponse {
2837
2837
  }
2838
2838
  export interface ListNodegroupsRequest {
2839
2839
  /**
2840
- * <p>The name of the Amazon EKS cluster that you would like to list node groups in.</p>
2840
+ * <p>The name of the Amazon EKS cluster that you would like to list node groups
2841
+ * in.</p>
2841
2842
  */
2842
2843
  clusterName: string | undefined;
2843
2844
  /**
@@ -2894,12 +2895,6 @@ export interface BadRequestException extends __SmithyException, $MetadataBearer
2894
2895
  $fault: "client";
2895
2896
  message?: string;
2896
2897
  }
2897
- export declare namespace BadRequestException {
2898
- /**
2899
- * @internal
2900
- */
2901
- const filterSensitiveLog: (obj: BadRequestException) => any;
2902
- }
2903
2898
  export interface ListTagsForResourceRequest {
2904
2899
  /**
2905
2900
  * <p>The Amazon Resource Name (ARN) that identifies the resource for which to list the tags. Currently, the
@@ -2936,12 +2931,6 @@ export interface NotFoundException extends __SmithyException, $MetadataBearer {
2936
2931
  $fault: "client";
2937
2932
  message?: string;
2938
2933
  }
2939
- export declare namespace NotFoundException {
2940
- /**
2941
- * @internal
2942
- */
2943
- const filterSensitiveLog: (obj: NotFoundException) => any;
2944
- }
2945
2934
  export interface ListUpdatesRequest {
2946
2935
  /**
2947
2936
  * <p>The name of the Amazon EKS cluster to list updates for.</p>
@@ -3016,7 +3005,8 @@ export declare enum ConnectorConfigProvider {
3016
3005
  */
3017
3006
  export interface ConnectorConfigRequest {
3018
3007
  /**
3019
- * <p>The Amazon Resource Name (ARN) of the role that is authorized to request the connector configuration.</p>
3008
+ * <p>The Amazon Resource Name (ARN) of the role that is authorized to request the connector
3009
+ * configuration.</p>
3020
3010
  */
3021
3011
  roleArn: string | undefined;
3022
3012
  /**
@@ -3040,7 +3030,8 @@ export interface RegisterClusterRequest {
3040
3030
  */
3041
3031
  connectorConfig: ConnectorConfigRequest | undefined;
3042
3032
  /**
3043
- * <p>Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.</p>
3033
+ * <p>Unique, case-sensitive identifier that you provide to ensure the idempotency of the
3034
+ * request.</p>
3044
3035
  */
3045
3036
  clientRequestToken?: string;
3046
3037
  /**
@@ -3079,12 +3070,6 @@ export interface ResourcePropagationDelayException extends __SmithyException, $M
3079
3070
  $fault: "client";
3080
3071
  message?: string;
3081
3072
  }
3082
- export declare namespace ResourcePropagationDelayException {
3083
- /**
3084
- * @internal
3085
- */
3086
- const filterSensitiveLog: (obj: ResourcePropagationDelayException) => any;
3087
- }
3088
3073
  export interface TagResourceRequest {
3089
3074
  /**
3090
3075
  * <p>The Amazon Resource Name (ARN) of the resource to which to add tags. Currently, the supported resources
@@ -3200,19 +3185,21 @@ export interface UpdateClusterConfigRequest {
3200
3185
  */
3201
3186
  name: string | undefined;
3202
3187
  /**
3203
- * <p>An object representing the VPC configuration to use for an Amazon EKS cluster.</p>
3188
+ * <p>An object representing the VPC configuration to use for an Amazon EKS
3189
+ * cluster.</p>
3204
3190
  */
3205
3191
  resourcesVpcConfig?: VpcConfigRequest;
3206
3192
  /**
3207
3193
  * <p>Enable or disable exporting the Kubernetes control plane logs for your cluster to
3208
- * CloudWatch Logs. By default, cluster control plane logs aren't exported to CloudWatch Logs. For more
3209
- * information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/control-plane-logs.html">Amazon EKS cluster control plane logs</a> in the
3194
+ * CloudWatch Logs. By default, cluster control plane logs aren't exported to
3195
+ * CloudWatch Logs. For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/control-plane-logs.html">Amazon EKS cluster control plane logs</a> in the
3210
3196
  * <i>
3211
3197
  * <i>Amazon EKS User Guide</i>
3212
3198
  * </i>.</p>
3213
3199
  * <note>
3214
- * <p>CloudWatch Logs ingestion, archive storage, and data scanning rates apply to exported
3215
- * control plane logs. For more information, see <a href="http://aws.amazon.com/cloudwatch/pricing/">CloudWatch Pricing</a>.</p>
3200
+ * <p>CloudWatch Logs ingestion, archive storage, and data scanning rates apply to
3201
+ * exported control plane logs. For more information, see <a href="http://aws.amazon.com/cloudwatch/pricing/">CloudWatch
3202
+ * Pricing</a>.</p>
3216
3203
  * </note>
3217
3204
  */
3218
3205
  logging?: Logging;
@@ -3315,7 +3302,8 @@ export declare namespace UpdateTaintsPayload {
3315
3302
  }
3316
3303
  export interface UpdateNodegroupConfigRequest {
3317
3304
  /**
3318
- * <p>The name of the Amazon EKS cluster that the managed node group resides in.</p>
3305
+ * <p>The name of the Amazon EKS cluster that the managed node group resides
3306
+ * in.</p>
3319
3307
  */
3320
3308
  clusterName: string | undefined;
3321
3309
  /**
@@ -3366,8 +3354,8 @@ export declare namespace UpdateNodegroupConfigResponse {
3366
3354
  }
3367
3355
  export interface UpdateNodegroupVersionRequest {
3368
3356
  /**
3369
- * <p>The name of the Amazon EKS cluster that is associated with the managed node group to
3370
- * update.</p>
3357
+ * <p>The name of the Amazon EKS cluster that is associated with the managed node
3358
+ * group to update.</p>
3371
3359
  */
3372
3360
  clusterName: string | undefined;
3373
3361
  /**
@@ -3384,12 +3372,11 @@ export interface UpdateNodegroupVersionRequest {
3384
3372
  */
3385
3373
  version?: string;
3386
3374
  /**
3387
- * <p>The AMI version of the Amazon EKS optimized AMI to use for the update. By default, the
3388
- * latest available AMI version for the node group's Kubernetes version is used. For more
3389
- * information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/eks-linux-ami-versions.html">Amazon EKS optimized Amazon Linux 2 AMI versions </a> in the
3390
- * <i>Amazon EKS User Guide</i>. If you specify <code>launchTemplate</code>, and your launch template uses a custom AMI, then don't specify
3391
- * <code>releaseVersion</code>, or the node group update will fail.
3392
- * For more information about using launch templates with Amazon EKS, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html">Launch template support</a> in the Amazon EKS User Guide.</p>
3375
+ * <p>The AMI version of the Amazon EKS optimized AMI to use for the update. By
3376
+ * default, the latest available AMI version for the node group's Kubernetes version is
3377
+ * used. For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/eks-linux-ami-versions.html">Amazon EKS optimized Amazon Linux 2 AMI versions </a> in the <i>Amazon EKS User Guide</i>.
3378
+ * If you specify <code>launchTemplate</code>, and your launch template uses a custom AMI, then don't specify <code>releaseVersion</code>,
3379
+ * or the node group update will fail. For more information about using launch templates with Amazon EKS, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html">Launch template support</a> in the Amazon EKS User Guide.</p>
3393
3380
  */
3394
3381
  releaseVersion?: string;
3395
3382
  /**