@aws-sdk/client-eks 3.42.0 → 3.47.0

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 +51 -0
  2. package/README.md +10 -10
  3. package/dist-cjs/endpoints.js +1 -24
  4. package/dist-cjs/models/models_0.js +8 -75
  5. package/dist-cjs/protocols/Aws_restJson1.js +32 -0
  6. package/dist-cjs/runtimeConfig.browser.js +7 -2
  7. package/dist-cjs/runtimeConfig.js +9 -3
  8. package/dist-es/endpoints.js +1 -24
  9. package/dist-es/models/models_0.js +5 -48
  10. package/dist-es/protocols/Aws_restJson1.js +66 -32
  11. package/dist-es/runtimeConfig.browser.js +12 -3
  12. package/dist-es/runtimeConfig.js +13 -6
  13. package/dist-types/EKS.d.ts +116 -103
  14. package/dist-types/EKSClient.d.ts +15 -11
  15. package/dist-types/commands/CreateClusterCommand.d.ts +6 -5
  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 +278 -279
  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 +16 -48
  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 +39 -46
@@ -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,14 +97,14 @@ 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
  /**
111
105
  * <p>The metadata that you apply to the add-on to assist with categorization and
112
- * organization. Each tag consists of a key and an optional value, both of which you
113
- * define. Add-on tags do not propagate to any other resources associated with the cluster.
106
+ * organization. Each tag consists of a key and an optional value. You define both.
107
+ * Add-on tags do not propagate to any other resources associated with the cluster.
114
108
  * </p>
115
109
  */
116
110
  tags?: {
@@ -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;
@@ -673,8 +632,7 @@ export interface AssociateIdentityProviderConfigRequest {
673
632
  oidc: OidcIdentityProviderConfigRequest | undefined;
674
633
  /**
675
634
  * <p>The metadata to apply to the configuration to assist with categorization and
676
- * organization. Each tag consists of a key and an optional value, both of which you
677
- * define.</p>
635
+ * organization. Each tag consists of a key and an optional value. You define both.</p>
678
636
  */
679
637
  tags?: {
680
638
  [key: string]: string;
@@ -710,11 +668,13 @@ export declare namespace AssociateIdentityProviderConfigResponse {
710
668
  const filterSensitiveLog: (obj: AssociateIdentityProviderConfigResponse) => any;
711
669
  }
712
670
  /**
713
- * <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>
714
673
  */
715
674
  export interface AutoScalingGroup {
716
675
  /**
717
- * <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>
718
678
  */
719
679
  name?: string;
720
680
  }
@@ -754,8 +714,8 @@ export interface CreateAddonRequest {
754
714
  */
755
715
  serviceAccountRoleArn?: string;
756
716
  /**
757
- * <p>How to resolve parameter value conflicts when migrating an existing add-on to an Amazon EKS
758
- * 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>
759
719
  */
760
720
  resolveConflicts?: ResolveConflicts | string;
761
721
  /**
@@ -765,7 +725,7 @@ export interface CreateAddonRequest {
765
725
  clientRequestToken?: string;
766
726
  /**
767
727
  * <p>The metadata to apply to the cluster to assist with categorization and organization.
768
- * Each tag consists of a key and an optional value, both of which you define. </p>
728
+ * Each tag consists of a key and an optional value. You define both.</p>
769
729
  */
770
730
  tags?: {
771
731
  [key: string]: string;
@@ -790,16 +750,20 @@ export declare namespace CreateAddonResponse {
790
750
  */
791
751
  const filterSensitiveLog: (obj: CreateAddonResponse) => any;
792
752
  }
753
+ export declare enum IpFamily {
754
+ IPV4 = "ipv4",
755
+ IPV6 = "ipv6"
756
+ }
793
757
  /**
794
758
  * <p>The Kubernetes network configuration for the cluster.</p>
795
759
  */
796
760
  export interface KubernetesNetworkConfigRequest {
797
761
  /**
798
- * <p>The CIDR block to assign Kubernetes service IP addresses from. If you don't specify a
799
- * block, Kubernetes assigns addresses from either the 10.100.0.0/16 or 172.20.0.0/16 CIDR
800
- * blocks. We recommend that you specify a block that does not overlap with resources in
801
- * other networks that are peered or connected to your VPC. The block must meet the
802
- * 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>
803
767
  * <ul>
804
768
  * <li>
805
769
  * <p>Within one of the following private IP address blocks: 10.0.0.0/8,
@@ -819,6 +783,22 @@ export interface KubernetesNetworkConfigRequest {
819
783
  * </important>
820
784
  */
821
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;
822
802
  }
823
803
  export declare namespace KubernetesNetworkConfigRequest {
824
804
  /**
@@ -843,9 +823,8 @@ export interface LogSetup {
843
823
  */
844
824
  types?: (LogType | string)[];
845
825
  /**
846
- * <p>If a log type is enabled, that log type exports its control plane logs to CloudWatch Logs. If a
847
- * log type isn't enabled, that log type doesn't export its control plane logs. Each
848
- * 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>
849
828
  */
850
829
  enabled?: boolean;
851
830
  }
@@ -871,20 +850,22 @@ export declare namespace Logging {
871
850
  const filterSensitiveLog: (obj: Logging) => any;
872
851
  }
873
852
  /**
874
- * <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>
875
855
  */
876
856
  export interface VpcConfigRequest {
877
857
  /**
878
- * <p>Specify subnets for your Amazon EKS nodes. Amazon EKS creates cross-account elastic network
879
- * interfaces in these subnets to allow communication between your nodes and the Kubernetes
880
- * 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>
881
861
  */
882
862
  subnetIds?: string[];
883
863
  /**
884
864
  * <p>Specify one or more security groups for the cross-account elastic network interfaces
885
- * that Amazon EKS creates to use that allow communication between your nodes and the Kubernetes
886
- * control plane. If you don't specify any security groups, then familiarize yourself with
887
- * 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>
888
869
  * <ul>
889
870
  * <li>
890
871
  * <p>1.14 Amazon EKS platform version <code>eks.2</code> and earlier</p>
@@ -904,8 +885,8 @@ export interface VpcConfigRequest {
904
885
  * Kubernetes API server endpoint. If you disable public access, your cluster's Kubernetes
905
886
  * API server can only receive requests from within the cluster VPC. The default value for
906
887
  * this parameter is <code>true</code>, which enables public access for your Kubernetes API
907
- * server. For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/cluster-endpoint.html">Amazon EKS cluster
908
- * 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>
909
890
  * <i>Amazon EKS User Guide</i>
910
891
  * </i>.</p>
911
892
  */
@@ -915,10 +896,11 @@ export interface VpcConfigRequest {
915
896
  * Kubernetes API server endpoint. If you enable private access, Kubernetes API requests
916
897
  * from within your cluster's VPC use the private VPC endpoint. The default value for this
917
898
  * parameter is <code>false</code>, which disables private access for your Kubernetes API
918
- * server. If you disable private access and you have nodes or Fargate pods in the
919
- * cluster, then ensure that <code>publicAccessCidrs</code> includes the necessary CIDR
920
- * 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
921
- * 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>
922
904
  * <i>Amazon EKS User Guide</i>
923
905
  * </i>.</p>
924
906
  */
@@ -927,9 +909,10 @@ export interface VpcConfigRequest {
927
909
  * <p>The CIDR blocks that are allowed access to your cluster's public Kubernetes API server
928
910
  * endpoint. Communication to the endpoint from addresses outside of the CIDR blocks that
929
911
  * you specify is denied. The default value is <code>0.0.0.0/0</code>. If you've disabled
930
- * private endpoint access and you have nodes or Fargate pods in the cluster, then ensure
931
- * 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
932
- * 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>
933
916
  * <i>Amazon EKS User Guide</i>
934
917
  * </i>.</p>
935
918
  */
@@ -952,20 +935,19 @@ export interface CreateClusterRequest {
952
935
  */
953
936
  version?: string;
954
937
  /**
955
- * <p>The Amazon Resource Name (ARN) of the IAM role that provides permissions for the Kubernetes control
956
- * plane to make calls to Amazon Web Services API operations on your behalf. For more information, see
957
- * <a href="https://docs.aws.amazon.com/eks/latest/userguide/service_IAM_role.html">Amazon EKS
958
- * 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>
959
941
  * <i>Amazon EKS User Guide</i>
960
942
  * </i>.</p>
961
943
  */
962
944
  roleArn: string | undefined;
963
945
  /**
964
- * <p>The VPC configuration used by the cluster control plane. Amazon EKS VPC resources have
946
+ * <p>The VPC configuration that's used by the cluster control plane. Amazon EKS VPC resources have
965
947
  * 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
966
948
  * Considerations</a> and <a href="https://docs.aws.amazon.com/eks/latest/userguide/sec-group-reqs.html">Cluster Security Group Considerations</a> in the
967
949
  * <i>Amazon EKS User Guide</i>. You must specify at least two subnets. You can specify up to five
968
- * security groups, but we recommend that you use a dedicated security group for your
950
+ * security groups. However, we recommend that you use a dedicated security group for your
969
951
  * cluster control plane.</p>
970
952
  */
971
953
  resourcesVpcConfig: VpcConfigRequest | undefined;
@@ -975,14 +957,15 @@ export interface CreateClusterRequest {
975
957
  kubernetesNetworkConfig?: KubernetesNetworkConfigRequest;
976
958
  /**
977
959
  * <p>Enable or disable exporting the Kubernetes control plane logs for your cluster to
978
- * CloudWatch Logs. By default, cluster control plane logs aren't exported to CloudWatch Logs. For more
979
- * 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
980
962
  * <i>
981
963
  * <i>Amazon EKS User Guide</i>
982
964
  * </i>.</p>
983
965
  * <note>
984
- * <p>CloudWatch Logs ingestion, archive storage, and data scanning rates apply to exported
985
- * 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>
986
969
  * </note>
987
970
  */
988
971
  logging?: Logging;
@@ -993,7 +976,7 @@ export interface CreateClusterRequest {
993
976
  clientRequestToken?: string;
994
977
  /**
995
978
  * <p>The metadata to apply to the cluster to assist with categorization and organization.
996
- * Each tag consists of a key and an optional value, both of which you define.</p>
979
+ * Each tag consists of a key and an optional value. You define both.</p>
997
980
  */
998
981
  tags?: {
999
982
  [key: string]: string;
@@ -1040,8 +1023,8 @@ export interface ConnectorConfigResponse {
1040
1023
  */
1041
1024
  activationCode?: string;
1042
1025
  /**
1043
- * <p>The expiration time of the connected cluster. The cluster's YAML file must be applied through the native
1044
- * 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>
1045
1028
  */
1046
1029
  activationExpiry?: Date;
1047
1030
  /**
@@ -1049,7 +1032,8 @@ export interface ConnectorConfigResponse {
1049
1032
  */
1050
1033
  provider?: string;
1051
1034
  /**
1052
- * <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>
1053
1037
  */
1054
1038
  roleArn?: string;
1055
1039
  }
@@ -1092,16 +1076,34 @@ export declare namespace Identity {
1092
1076
  const filterSensitiveLog: (obj: Identity) => any;
1093
1077
  }
1094
1078
  /**
1095
- * <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>
1096
1081
  */
1097
1082
  export interface KubernetesNetworkConfigResponse {
1098
1083
  /**
1099
- * <p>The CIDR block that Kubernetes service IP addresses are assigned from. If you didn't
1100
- * specify a CIDR block when you created the cluster, then Kubernetes assigns addresses
1101
- * from either the 10.100.0.0/16 or 172.20.0.0/16 CIDR blocks. If this was specified, then
1102
- * 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>
1103
1090
  */
1104
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;
1105
1107
  }
1106
1108
  export declare namespace KubernetesNetworkConfigResponse {
1107
1109
  /**
@@ -1110,7 +1112,8 @@ export declare namespace KubernetesNetworkConfigResponse {
1110
1112
  const filterSensitiveLog: (obj: KubernetesNetworkConfigResponse) => any;
1111
1113
  }
1112
1114
  /**
1113
- * <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>
1114
1117
  */
1115
1118
  export interface VpcConfigResponse {
1116
1119
  /**
@@ -1124,8 +1127,9 @@ export interface VpcConfigResponse {
1124
1127
  */
1125
1128
  securityGroupIds?: string[];
1126
1129
  /**
1127
- * <p>The cluster security group that was created by Amazon EKS for the cluster. Managed node
1128
- * 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>
1129
1133
  */
1130
1134
  clusterSecurityGroupId?: string;
1131
1135
  /**
@@ -1133,19 +1137,21 @@ export interface VpcConfigResponse {
1133
1137
  */
1134
1138
  vpcId?: string;
1135
1139
  /**
1136
- * <p>This parameter indicates whether the Amazon EKS public API server endpoint is enabled. If
1137
- * the Amazon EKS public API server endpoint is disabled, your cluster's Kubernetes API server
1138
- * 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>
1139
1144
  */
1140
1145
  endpointPublicAccess?: boolean;
1141
1146
  /**
1142
- * <p>This parameter indicates whether the Amazon EKS private API server endpoint is enabled. If
1143
- * the Amazon EKS private API server endpoint is enabled, Kubernetes API requests that originate
1144
- * from within your cluster's VPC use the private VPC endpoint instead of traversing the
1145
- * internet. If this value is disabled and you have nodes or Fargate pods in the cluster,
1146
- * then ensure that <code>publicAccessCidrs</code> includes the necessary CIDR blocks for
1147
- * 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
1148
- * 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>
1149
1155
  * <i>Amazon EKS User Guide</i>
1150
1156
  * </i>.</p>
1151
1157
  */
@@ -1154,9 +1160,9 @@ export interface VpcConfigResponse {
1154
1160
  * <p>The CIDR blocks that are allowed access to your cluster's public Kubernetes API server
1155
1161
  * endpoint. Communication to the endpoint from addresses outside of the listed CIDR blocks
1156
1162
  * is denied. The default value is <code>0.0.0.0/0</code>. If you've disabled private
1157
- * endpoint access and you have nodes or Fargate pods in the cluster, then ensure that the
1158
- * 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
1159
- * 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>
1160
1166
  * <i>Amazon EKS User Guide</i>
1161
1167
  * </i>.</p>
1162
1168
  */
@@ -1194,15 +1200,16 @@ export interface Cluster {
1194
1200
  */
1195
1201
  endpoint?: string;
1196
1202
  /**
1197
- * <p>The Amazon Resource Name (ARN) of the IAM role that provides permissions for the Kubernetes control
1198
- * 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>
1199
1206
  */
1200
1207
  roleArn?: string;
1201
1208
  /**
1202
- * <p>The VPC configuration used by the cluster control plane. Amazon EKS VPC resources have
1203
- * 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
1204
- * Considerations</a> and <a href="https://docs.aws.amazon.com/eks/latest/userguide/sec-group-reqs.html">Cluster Security Group Considerations</a> in the
1205
- * <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>
1206
1213
  */
1207
1214
  resourcesVpcConfig?: VpcConfigResponse;
1208
1215
  /**
@@ -1231,16 +1238,16 @@ export interface Cluster {
1231
1238
  */
1232
1239
  clientRequestToken?: string;
1233
1240
  /**
1234
- * <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
1235
- * 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>
1236
1243
  * <i>Amazon EKS User Guide</i>
1237
1244
  * </i>.</p>
1238
1245
  */
1239
1246
  platformVersion?: string;
1240
1247
  /**
1241
1248
  * <p>The metadata that you apply to the cluster to assist with categorization and
1242
- * organization. Each tag consists of a key and an optional value, both of which you
1243
- * define. Cluster tags do not propagate to any other resources associated with the
1249
+ * organization. Each tag consists of a key and an optional value. You define both.
1250
+ * Cluster tags do not propagate to any other resources associated with the
1244
1251
  * cluster.</p>
1245
1252
  */
1246
1253
  tags?: {
@@ -1289,12 +1296,6 @@ export interface ResourceLimitExceededException extends __SmithyException, $Meta
1289
1296
  nodegroupName?: string;
1290
1297
  message?: string;
1291
1298
  }
1292
- export declare namespace ResourceLimitExceededException {
1293
- /**
1294
- * @internal
1295
- */
1296
- const filterSensitiveLog: (obj: ResourceLimitExceededException) => any;
1297
- }
1298
1299
  /**
1299
1300
  * <p>The service is unavailable. Back off and retry the operation.</p>
1300
1301
  */
@@ -1303,16 +1304,11 @@ export interface ServiceUnavailableException extends __SmithyException, $Metadat
1303
1304
  $fault: "server";
1304
1305
  message?: string;
1305
1306
  }
1306
- export declare namespace ServiceUnavailableException {
1307
- /**
1308
- * @internal
1309
- */
1310
- const filterSensitiveLog: (obj: ServiceUnavailableException) => any;
1311
- }
1312
1307
  /**
1313
1308
  * <p>At least one of your specified cluster subnets is in an Availability Zone that does
1314
- * not support Amazon EKS. The exception output specifies the supported Availability Zones for
1315
- * 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>
1316
1312
  */
1317
1313
  export interface UnsupportedAvailabilityZoneException extends __SmithyException, $MetadataBearer {
1318
1314
  name: "UnsupportedAvailabilityZoneException";
@@ -1332,12 +1328,6 @@ export interface UnsupportedAvailabilityZoneException extends __SmithyException,
1332
1328
  */
1333
1329
  validZones?: string[];
1334
1330
  }
1335
- export declare namespace UnsupportedAvailabilityZoneException {
1336
- /**
1337
- * @internal
1338
- */
1339
- const filterSensitiveLog: (obj: UnsupportedAvailabilityZoneException) => any;
1340
- }
1341
1331
  /**
1342
1332
  * <p>An object representing an Fargate profile selector.</p>
1343
1333
  */
@@ -1366,27 +1356,28 @@ export interface CreateFargateProfileRequest {
1366
1356
  */
1367
1357
  fargateProfileName: string | undefined;
1368
1358
  /**
1369
- * <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>
1370
1361
  */
1371
1362
  clusterName: string | undefined;
1372
1363
  /**
1373
1364
  * <p>The Amazon Resource Name (ARN) of the pod execution role to use for pods that match the selectors in
1374
- * the Fargate profile. The pod execution role allows Fargate infrastructure to register with
1375
- * your cluster as a node, and it provides read access to Amazon ECR image repositories. For
1376
- * more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/pod-execution-role.html">Pod Execution Role</a> in the
1377
- * <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>
1378
1369
  */
1379
1370
  podExecutionRoleArn: string | undefined;
1380
1371
  /**
1381
- * <p>The IDs of subnets to launch your pods into. At this time, pods running on Fargate are
1382
- * not assigned public IP addresses, so only private subnets (with no direct route to an
1383
- * 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>
1384
1374
  */
1385
1375
  subnets?: string[];
1386
1376
  /**
1387
- * <p>The selectors to match for pods to use this Fargate profile. Each selector must have an
1388
- * associated namespace. Optionally, you can also specify labels for a namespace. You may
1389
- * 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>
1390
1381
  */
1391
1382
  selectors?: FargateProfileSelector[];
1392
1383
  /**
@@ -1396,8 +1387,8 @@ export interface CreateFargateProfileRequest {
1396
1387
  clientRequestToken?: string;
1397
1388
  /**
1398
1389
  * <p>The metadata to apply to the Fargate profile to assist with categorization and
1399
- * organization. Each tag consists of a key and an optional value, both of which you
1400
- * define. Fargate profile tags do not propagate to any other resources associated with the
1390
+ * organization. Each tag consists of a key and an optional value. You define both.
1391
+ * Fargate profile tags do not propagate to any other resources associated with the
1401
1392
  * Fargate profile, such as the pods that are scheduled with it.</p>
1402
1393
  */
1403
1394
  tags?: {
@@ -1424,11 +1415,13 @@ export interface FargateProfile {
1424
1415
  */
1425
1416
  fargateProfileArn?: string;
1426
1417
  /**
1427
- * <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>
1428
1420
  */
1429
1421
  clusterName?: string;
1430
1422
  /**
1431
- * <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>
1432
1425
  */
1433
1426
  createdAt?: Date;
1434
1427
  /**
@@ -1451,8 +1444,8 @@ export interface FargateProfile {
1451
1444
  status?: FargateProfileStatus | string;
1452
1445
  /**
1453
1446
  * <p>The metadata applied to the Fargate profile to assist with categorization and
1454
- * organization. Each tag consists of a key and an optional value, both of which you
1455
- * define. Fargate profile tags do not propagate to any other resources associated with the
1447
+ * organization. Each tag consists of a key and an optional value. You define both.
1448
+ * Fargate profile tags do not propagate to any other resources associated with the
1456
1449
  * Fargate profile, such as the pods that are scheduled with it.</p>
1457
1450
  */
1458
1451
  tags?: {
@@ -1493,8 +1486,8 @@ export declare type CapacityTypes = "ON_DEMAND" | "SPOT";
1493
1486
  * </a>, or the node group deployment or
1494
1487
  * update will fail. For more information about launch templates, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateLaunchTemplate.html">
1495
1488
  * <code>CreateLaunchTemplate</code>
1496
- * </a> in the Amazon EC2 API Reference.
1497
- * 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>
1498
1491
  * <p>Specify either <code>name</code> or <code>id</code>, but not both.</p>
1499
1492
  */
1500
1493
  export interface LaunchTemplateSpecification {
@@ -1524,16 +1517,15 @@ export declare namespace LaunchTemplateSpecification {
1524
1517
  */
1525
1518
  export interface RemoteAccessConfig {
1526
1519
  /**
1527
- * <p>The Amazon EC2 SSH key that provides access for SSH communication with the nodes in the
1528
- * managed node group. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-key-pairs.html">Amazon EC2 key
1529
- * 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>
1530
1522
  */
1531
1523
  ec2SshKey?: string;
1532
1524
  /**
1533
1525
  * <p>The security groups that are allowed SSH access (port 22) to the nodes. If you specify
1534
- * an Amazon EC2 SSH key but do not specify a source security group when you create a managed
1535
- * node group, then port 22 on the nodes is opened to the internet (0.0.0.0/0). For more
1536
- * 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
1537
1529
  * <i>Amazon Virtual Private Cloud User Guide</i>.</p>
1538
1530
  */
1539
1531
  sourceSecurityGroups?: string[];
@@ -1557,13 +1549,12 @@ export interface NodegroupScalingConfig {
1557
1549
  minSize?: number;
1558
1550
  /**
1559
1551
  * <p>The maximum number of nodes that the managed node group can scale out to. For
1560
- * 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
1561
- * 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>
1562
1553
  */
1563
1554
  maxSize?: number;
1564
1555
  /**
1565
1556
  * <p>The current number of nodes that the managed node group should maintain.</p>
1566
- * <important>
1557
+ * <important>
1567
1558
  * <p>If you use Cluster Autoscaler, you shouldn't change the desiredSize value
1568
1559
  * directly, as this can cause the Cluster Autoscaler to suddenly scale up or scale
1569
1560
  * down.</p>
@@ -1624,14 +1615,15 @@ export declare namespace Taint {
1624
1615
  */
1625
1616
  export interface NodegroupUpdateConfig {
1626
1617
  /**
1627
- * <p>The maximum number of nodes unavailable at once during a version update. Nodes will be updated in parallel.
1628
- * This value or <code>maxUnavailablePercentage</code> is required to have a value.The maximum number
1629
- * 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>
1630
1621
  */
1631
1622
  maxUnavailable?: number;
1632
1623
  /**
1633
- * <p>The maximum percentage of nodes unavailable during a version update. This percentage of nodes will be
1634
- * 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>
1635
1627
  */
1636
1628
  maxUnavailablePercentage?: number;
1637
1629
  }
@@ -1687,9 +1679,10 @@ export interface CreateNodegroupRequest {
1687
1679
  * <p>The AMI type for your node group. GPU instance types should use the
1688
1680
  * <code>AL2_x86_64_GPU</code> AMI type. Non-GPU instances should use the
1689
1681
  * <code>AL2_x86_64</code> AMI type. Arm instances should use the
1690
- * <code>AL2_ARM_64</code> AMI type. All types use the Amazon EKS optimized Amazon Linux 2 AMI.
1691
- * If you specify <code>launchTemplate</code>, and your launch template uses a custom AMI, then don't specify <code>amiType</code>,
1692
- * 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>
1693
1686
  */
1694
1687
  amiType?: AMITypes | string;
1695
1688
  /**
@@ -1699,15 +1692,15 @@ export interface CreateNodegroupRequest {
1699
1692
  */
1700
1693
  remoteAccess?: RemoteAccessConfig;
1701
1694
  /**
1702
- * <p>The Amazon Resource Name (ARN) of the IAM role to associate with your node group. The Amazon EKS worker
1703
- * node <code>kubelet</code> daemon makes calls to Amazon Web Services APIs on your behalf. Nodes receive
1704
- * permissions for these API calls through an IAM instance profile and associated
1705
- * policies. Before you can launch nodes and register them into a cluster, you must create
1706
- * an IAM role for those nodes to use when they are launched. For more information, see
1707
- * <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>
1708
1701
  * <i>Amazon EKS User Guide</i>
1709
- * </i>.
1710
- * 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">
1711
1704
  * <code>IamInstanceProfile</code>
1712
1705
  * </a> in your launch template,
1713
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>
@@ -1726,8 +1719,8 @@ export interface CreateNodegroupRequest {
1726
1719
  taints?: Taint[];
1727
1720
  /**
1728
1721
  * <p>The metadata to apply to the node group to assist with categorization and
1729
- * organization. Each tag consists of a key and an optional value, both of which you
1730
- * define. Node group tags do not propagate to any other resources associated with the node
1722
+ * organization. Each tag consists of a key and an optional value. You
1723
+ * define both. Node group tags do not propagate to any other resources associated with the node
1731
1724
  * group, such as the Amazon EC2 instances or subnets.</p>
1732
1725
  */
1733
1726
  tags?: {
@@ -1761,12 +1754,11 @@ export interface CreateNodegroupRequest {
1761
1754
  */
1762
1755
  version?: string;
1763
1756
  /**
1764
- * <p>The AMI version of the Amazon EKS optimized AMI to use with your node group. By default,
1765
- * the latest available AMI version for the node group's current Kubernetes version is
1766
- * used. For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/eks-linux-ami-versions.html">Amazon EKS
1767
- * optimized Amazon Linux 2 AMI versions</a> in the <i>Amazon EKS User Guide</i>. If you specify <code>launchTemplate</code>,
1768
- * and your launch template uses a custom AMI, then don't specify <code>releaseVersion</code>, or the node group
1769
- * 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>
1770
1762
  */
1771
1763
  releaseVersion?: string;
1772
1764
  }
@@ -1805,40 +1797,40 @@ export interface Issue {
1805
1797
  * <ul>
1806
1798
  * <li>
1807
1799
  * <p>
1808
- * <b>AccessDenied</b>: Amazon EKS or one or more of your
1809
- * managed nodes is failing to authenticate or authorize with your Kubernetes
1810
- * 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>
1811
1803
  * </li>
1812
1804
  * <li>
1813
1805
  * <p>
1814
- * <b>AsgInstanceLaunchFailures</b>: Your Auto Scaling group is
1815
- * 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>
1816
1808
  * </li>
1817
1809
  * <li>
1818
1810
  * <p>
1819
1811
  * <b>AutoScalingGroupNotFound</b>: We couldn't find
1820
- * the Auto Scaling group associated with the managed node group. You may be able to
1821
- * 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>
1822
1815
  * </li>
1823
1816
  * <li>
1824
1817
  * <p>
1825
- * <b>ClusterUnreachable</b>: Amazon EKS or one or more of
1826
- * your managed nodes is unable to to communicate with your Kubernetes cluster API
1827
- * server. This can happen if there are network disruptions or if API servers are
1828
- * 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>
1829
1822
  * </li>
1830
1823
  * <li>
1831
1824
  * <p>
1832
1825
  * <b>Ec2LaunchTemplateNotFound</b>: We couldn't find
1833
- * the Amazon EC2 launch template for your managed node group. You may be able to
1834
- * 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>
1835
1828
  * </li>
1836
1829
  * <li>
1837
1830
  * <p>
1838
- * <b>Ec2LaunchTemplateVersionMismatch</b>: The Amazon EC2
1839
- * launch template version for your managed node group does not match the version
1840
- * that Amazon EKS created. You may be able to revert to the version that Amazon EKS created
1841
- * 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>
1842
1834
  * </li>
1843
1835
  * <li>
1844
1836
  * <p>
@@ -1855,30 +1847,31 @@ export interface Issue {
1855
1847
  * <li>
1856
1848
  * <p>
1857
1849
  * <b>Ec2SubnetInvalidConfiguration</b>: One or more
1858
- * Amazon EC2 subnets specified for a node group do not automatically assign public IP
1859
- * addresses to instances launched into it. If you want your instances to be
1860
- * assigned a public IP address, then you need to enable the <code>auto-assign
1861
- * 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
1862
1855
  * the public IPv4 addressing attribute for your subnet</a> in the Amazon
1863
1856
  * VPC User Guide.</p>
1864
1857
  * </li>
1865
1858
  * <li>
1866
1859
  * <p>
1867
1860
  * <b>IamInstanceProfileNotFound</b>: We couldn't find
1868
- * the IAM instance profile for your managed node group. You may be able to
1869
- * 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>
1870
1863
  * </li>
1871
1864
  * <li>
1872
1865
  * <p>
1873
1866
  * <b>IamNodeRoleNotFound</b>: We couldn't find the
1874
- * IAM role for your managed node group. You may be able to recreate an IAM role
1875
- * 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>
1876
1869
  * </li>
1877
1870
  * <li>
1878
1871
  * <p>
1879
- * <b>InstanceLimitExceeded</b>: Your Amazon Web Services account is
1880
- * unable to launch any more instances of the specified instance type. You may be
1881
- * 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>
1882
1875
  * </li>
1883
1876
  * <li>
1884
1877
  * <p>
@@ -1976,8 +1969,8 @@ export interface Nodegroup {
1976
1969
  /**
1977
1970
  * <p>If the node group was deployed using a launch template with a custom AMI, then this is
1978
1971
  * the AMI ID that was specified in the launch template. For node groups that weren't
1979
- * deployed using a launch template, this is the version of the Amazon EKS optimized AMI that
1980
- * 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>
1981
1974
  */
1982
1975
  releaseVersion?: string;
1983
1976
  /**
@@ -2027,16 +2020,17 @@ export interface Nodegroup {
2027
2020
  */
2028
2021
  amiType?: AMITypes | string;
2029
2022
  /**
2030
- * <p>The IAM role associated with your node group. The Amazon EKS node <code>kubelet</code>
2031
- * daemon makes calls to Amazon Web Services APIs on your behalf. Nodes receive permissions for these API
2032
- * 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>
2033
2027
  */
2034
2028
  nodeRole?: string;
2035
2029
  /**
2036
2030
  * <p>The Kubernetes labels applied to the nodes in the node group.</p>
2037
2031
  * <note>
2038
- * <p>Only labels that are applied with the Amazon EKS API are shown here. There may be other
2039
- * 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>
2040
2034
  * </note>
2041
2035
  */
2042
2036
  labels?: {
@@ -2044,9 +2038,9 @@ export interface Nodegroup {
2044
2038
  };
2045
2039
  /**
2046
2040
  * <p>The Kubernetes taints to be applied to the nodes in the node group when they are
2047
- * created. Effect is one of <code>No_Schedule</code>, <code>Prefer_No_Schedule</code>, or <code>No_Execute</code>. Kubernetes taints
2048
- * can be used together with tolerations to control how workloads are scheduled to your
2049
- * 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>
2050
2044
  */
2051
2045
  taints?: Taint[];
2052
2046
  /**
@@ -2076,7 +2070,7 @@ export interface Nodegroup {
2076
2070
  launchTemplate?: LaunchTemplateSpecification;
2077
2071
  /**
2078
2072
  * <p>The metadata applied to the node group to assist with categorization and organization.
2079
- * Each tag consists of a key and an optional value, both of which you define. Node group
2073
+ * Each tag consists of a key and an optional value. You define both. Node group
2080
2074
  * tags do not propagate to any other resources associated with the node group, such as the
2081
2075
  * Amazon EC2 instances or subnets. </p>
2082
2076
  */
@@ -2114,7 +2108,8 @@ export interface DeleteAddonRequest {
2114
2108
  */
2115
2109
  addonName: string | undefined;
2116
2110
  /**
2117
- * <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>
2118
2113
  */
2119
2114
  preserve?: boolean;
2120
2115
  }
@@ -2163,7 +2158,8 @@ export declare namespace DeleteClusterResponse {
2163
2158
  }
2164
2159
  export interface DeleteFargateProfileRequest {
2165
2160
  /**
2166
- * <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>
2167
2163
  */
2168
2164
  clusterName: string | undefined;
2169
2165
  /**
@@ -2191,7 +2187,8 @@ export declare namespace DeleteFargateProfileResponse {
2191
2187
  }
2192
2188
  export interface DeleteNodegroupRequest {
2193
2189
  /**
2194
- * <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>
2195
2192
  */
2196
2193
  clusterName: string | undefined;
2197
2194
  /**
@@ -2354,7 +2351,8 @@ export declare namespace DescribeClusterResponse {
2354
2351
  }
2355
2352
  export interface DescribeFargateProfileRequest {
2356
2353
  /**
2357
- * <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>
2358
2356
  */
2359
2357
  clusterName: string | undefined;
2360
2358
  /**
@@ -2478,8 +2476,7 @@ export interface OidcIdentityProviderConfig {
2478
2476
  };
2479
2477
  /**
2480
2478
  * <p>The metadata to apply to the provider configuration to assist with categorization and
2481
- * organization. Each tag consists of a key and an optional value, both of which you
2482
- * defined.</p>
2479
+ * organization. Each tag consists of a key and an optional value. You define both.</p>
2483
2480
  */
2484
2481
  tags?: {
2485
2482
  [key: string]: string;
@@ -2705,7 +2702,7 @@ export interface ListClustersRequest {
2705
2702
  */
2706
2703
  nextToken?: string;
2707
2704
  /**
2708
- * <p>Indicates whether connected clusters are included in the returned list. Default value is 'ALL'.</p>
2705
+ * <p>Indicates whether external clusters are included in the returned list. Use '<code>all</code>' to return connected clusters, or blank to return only Amazon EKS clusters. '<code>all</code>' must be in lowercase otherwise an error occurs.</p>
2709
2706
  */
2710
2707
  include?: string[];
2711
2708
  }
@@ -2768,7 +2765,8 @@ export declare namespace ListFargateProfilesRequest {
2768
2765
  }
2769
2766
  export interface ListFargateProfilesResponse {
2770
2767
  /**
2771
- * <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>
2772
2770
  */
2773
2771
  fargateProfileNames?: string[];
2774
2772
  /**
@@ -2839,7 +2837,8 @@ export declare namespace ListIdentityProviderConfigsResponse {
2839
2837
  }
2840
2838
  export interface ListNodegroupsRequest {
2841
2839
  /**
2842
- * <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>
2843
2842
  */
2844
2843
  clusterName: string | undefined;
2845
2844
  /**
@@ -2896,12 +2895,6 @@ export interface BadRequestException extends __SmithyException, $MetadataBearer
2896
2895
  $fault: "client";
2897
2896
  message?: string;
2898
2897
  }
2899
- export declare namespace BadRequestException {
2900
- /**
2901
- * @internal
2902
- */
2903
- const filterSensitiveLog: (obj: BadRequestException) => any;
2904
- }
2905
2898
  export interface ListTagsForResourceRequest {
2906
2899
  /**
2907
2900
  * <p>The Amazon Resource Name (ARN) that identifies the resource for which to list the tags. Currently, the
@@ -2938,12 +2931,6 @@ export interface NotFoundException extends __SmithyException, $MetadataBearer {
2938
2931
  $fault: "client";
2939
2932
  message?: string;
2940
2933
  }
2941
- export declare namespace NotFoundException {
2942
- /**
2943
- * @internal
2944
- */
2945
- const filterSensitiveLog: (obj: NotFoundException) => any;
2946
- }
2947
2934
  export interface ListUpdatesRequest {
2948
2935
  /**
2949
2936
  * <p>The name of the Amazon EKS cluster to list updates for.</p>
@@ -3018,7 +3005,8 @@ export declare enum ConnectorConfigProvider {
3018
3005
  */
3019
3006
  export interface ConnectorConfigRequest {
3020
3007
  /**
3021
- * <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>
3022
3010
  */
3023
3011
  roleArn: string | undefined;
3024
3012
  /**
@@ -3042,7 +3030,8 @@ export interface RegisterClusterRequest {
3042
3030
  */
3043
3031
  connectorConfig: ConnectorConfigRequest | undefined;
3044
3032
  /**
3045
- * <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>
3046
3035
  */
3047
3036
  clientRequestToken?: string;
3048
3037
  /**
@@ -3073,6 +3062,14 @@ export declare namespace RegisterClusterResponse {
3073
3062
  */
3074
3063
  const filterSensitiveLog: (obj: RegisterClusterResponse) => any;
3075
3064
  }
3065
+ /**
3066
+ * <p>Required resources (such as Service Linked Roles) were created and are still propagating. Retry later.</p>
3067
+ */
3068
+ export interface ResourcePropagationDelayException extends __SmithyException, $MetadataBearer {
3069
+ name: "ResourcePropagationDelayException";
3070
+ $fault: "client";
3071
+ message?: string;
3072
+ }
3076
3073
  export interface TagResourceRequest {
3077
3074
  /**
3078
3075
  * <p>The Amazon Resource Name (ARN) of the resource to which to add tags. Currently, the supported resources
@@ -3188,19 +3185,21 @@ export interface UpdateClusterConfigRequest {
3188
3185
  */
3189
3186
  name: string | undefined;
3190
3187
  /**
3191
- * <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>
3192
3190
  */
3193
3191
  resourcesVpcConfig?: VpcConfigRequest;
3194
3192
  /**
3195
3193
  * <p>Enable or disable exporting the Kubernetes control plane logs for your cluster to
3196
- * CloudWatch Logs. By default, cluster control plane logs aren't exported to CloudWatch Logs. For more
3197
- * 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
3198
3196
  * <i>
3199
3197
  * <i>Amazon EKS User Guide</i>
3200
3198
  * </i>.</p>
3201
3199
  * <note>
3202
- * <p>CloudWatch Logs ingestion, archive storage, and data scanning rates apply to exported
3203
- * 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>
3204
3203
  * </note>
3205
3204
  */
3206
3205
  logging?: Logging;
@@ -3303,7 +3302,8 @@ export declare namespace UpdateTaintsPayload {
3303
3302
  }
3304
3303
  export interface UpdateNodegroupConfigRequest {
3305
3304
  /**
3306
- * <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>
3307
3307
  */
3308
3308
  clusterName: string | undefined;
3309
3309
  /**
@@ -3354,8 +3354,8 @@ export declare namespace UpdateNodegroupConfigResponse {
3354
3354
  }
3355
3355
  export interface UpdateNodegroupVersionRequest {
3356
3356
  /**
3357
- * <p>The name of the Amazon EKS cluster that is associated with the managed node group to
3358
- * update.</p>
3357
+ * <p>The name of the Amazon EKS cluster that is associated with the managed node
3358
+ * group to update.</p>
3359
3359
  */
3360
3360
  clusterName: string | undefined;
3361
3361
  /**
@@ -3372,12 +3372,11 @@ export interface UpdateNodegroupVersionRequest {
3372
3372
  */
3373
3373
  version?: string;
3374
3374
  /**
3375
- * <p>The AMI version of the Amazon EKS optimized AMI to use for the update. By default, the
3376
- * latest available AMI version for the node group's Kubernetes version is used. For more
3377
- * 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
3378
- * <i>Amazon EKS User Guide</i>. If you specify <code>launchTemplate</code>, and your launch template uses a custom AMI, then don't specify
3379
- * <code>releaseVersion</code>, or the node group update will fail.
3380
- * 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>
3381
3380
  */
3382
3381
  releaseVersion?: string;
3383
3382
  /**