@aws-sdk/client-eks 3.41.0 → 3.46.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 (34) hide show
  1. package/CHANGELOG.md +56 -0
  2. package/README.md +10 -10
  3. package/dist-cjs/endpoints.js +17 -0
  4. package/dist-cjs/models/models_0.js +20 -3
  5. package/dist-cjs/protocols/Aws_restJson1.js +62 -0
  6. package/dist-cjs/runtimeConfig.js +0 -2
  7. package/dist-es/endpoints.js +17 -0
  8. package/dist-es/models/models_0.js +13 -0
  9. package/dist-es/protocols/Aws_restJson1.js +138 -72
  10. package/dist-es/runtimeConfig.js +0 -2
  11. package/dist-types/EKS.d.ts +121 -107
  12. package/dist-types/EKSClient.d.ts +10 -10
  13. package/dist-types/commands/CreateAddonCommand.d.ts +5 -4
  14. package/dist-types/commands/CreateClusterCommand.d.ts +6 -5
  15. package/dist-types/commands/CreateFargateProfileCommand.d.ts +28 -24
  16. package/dist-types/commands/CreateNodegroupCommand.d.ts +9 -8
  17. package/dist-types/commands/DeleteClusterCommand.d.ts +2 -2
  18. package/dist-types/commands/DeleteFargateProfileCommand.d.ts +8 -7
  19. package/dist-types/commands/DeregisterClusterCommand.d.ts +2 -1
  20. package/dist-types/commands/DescribeUpdateCommand.d.ts +2 -2
  21. package/dist-types/commands/DisassociateIdentityProviderConfigCommand.d.ts +2 -2
  22. package/dist-types/commands/ListClustersCommand.d.ts +2 -1
  23. package/dist-types/commands/ListFargateProfilesCommand.d.ts +2 -2
  24. package/dist-types/commands/ListNodegroupsCommand.d.ts +3 -2
  25. package/dist-types/commands/ListUpdatesCommand.d.ts +2 -2
  26. package/dist-types/commands/RegisterClusterCommand.d.ts +9 -5
  27. package/dist-types/commands/TagResourceCommand.d.ts +3 -4
  28. package/dist-types/commands/UpdateClusterConfigCommand.d.ts +12 -11
  29. package/dist-types/commands/UpdateClusterVersionCommand.d.ts +3 -4
  30. package/dist-types/commands/UpdateNodegroupConfigCommand.d.ts +4 -5
  31. package/dist-types/commands/UpdateNodegroupVersionCommand.d.ts +7 -6
  32. package/dist-types/models/models_0.d.ts +337 -211
  33. package/dist-types/ts3.4/models/models_0.d.ts +34 -0
  34. package/package.json +37 -44
@@ -1,4 +1,21 @@
1
1
  import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
2
+ /**
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
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
+ * Management</a> in the <i>IAM User Guide</i>. </p>
7
+ */
8
+ export interface AccessDeniedException extends __SmithyException, $MetadataBearer {
9
+ name: "AccessDeniedException";
10
+ $fault: "client";
11
+ message?: string;
12
+ }
13
+ export declare namespace AccessDeniedException {
14
+ /**
15
+ * @internal
16
+ */
17
+ const filterSensitiveLog: (obj: AccessDeniedException) => any;
18
+ }
2
19
  export declare enum AddonIssueCode {
3
20
  ACCESS_DENIED = "AccessDenied",
4
21
  ADMISSION_REQUEST_DENIED = "AdmissionRequestDenied",
@@ -49,7 +66,8 @@ export declare namespace AddonHealth {
49
66
  }
50
67
  export declare type AddonStatus = "ACTIVE" | "CREATE_FAILED" | "CREATING" | "DEGRADED" | "DELETE_FAILED" | "DELETING" | "UPDATING";
51
68
  /**
52
- * <p>An Amazon EKS add-on.</p>
69
+ * <p>An Amazon EKS add-on. For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/eks-add-ons.html">Amazon EKS add-ons</a> in
70
+ * the <i>Amazon EKS User Guide</i>.</p>
53
71
  */
54
72
  export interface Addon {
55
73
  /**
@@ -85,14 +103,14 @@ export interface Addon {
85
103
  */
86
104
  modifiedAt?: Date;
87
105
  /**
88
- * <p>The Amazon Resource Name (ARN) of the IAM role that is bound to the Kubernetes service account used
89
- * by the add-on.</p>
106
+ * <p>The Amazon Resource Name (ARN) of the IAM role that is bound to the Kubernetes service
107
+ * account used by the add-on.</p>
90
108
  */
91
109
  serviceAccountRoleArn?: string;
92
110
  /**
93
111
  * <p>The metadata that you apply to the add-on to assist with categorization and
94
- * organization. Each tag consists of a key and an optional value, both of which you
95
- * define. Add-on tags do not propagate to any other resources associated with the cluster.
112
+ * organization. Each tag consists of a key and an optional value. You define both.
113
+ * Add-on tags do not propagate to any other resources associated with the cluster.
96
114
  * </p>
97
115
  */
98
116
  tags?: {
@@ -177,15 +195,15 @@ export declare namespace AddonInfo {
177
195
  }
178
196
  export declare type AMITypes = "AL2_ARM_64" | "AL2_x86_64" | "AL2_x86_64_GPU" | "BOTTLEROCKET_ARM_64" | "BOTTLEROCKET_x86_64" | "CUSTOM";
179
197
  /**
180
- * <p>Identifies the Key Management Service (KMS) key used to encrypt the secrets.</p>
198
+ * <p>Identifies the Key Management Service (KMS) key used to encrypt the
199
+ * secrets.</p>
181
200
  */
182
201
  export interface Provider {
183
202
  /**
184
203
  * <p>Amazon Resource Name (ARN) or alias of the KMS key. The KMS key must be symmetric, created in the same
185
204
  * region as the cluster, and if the KMS key was created in a different account, the user
186
205
  * 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
187
- * Users in Other Accounts to Use a KMS key</a> in the <i>Key Management Service
188
- * Developer Guide</i>.</p>
206
+ * Users in Other Accounts to Use a KMS key</a> in the <i>Key Management Service Developer Guide</i>.</p>
189
207
  */
190
208
  keyArn?: string;
191
209
  }
@@ -204,7 +222,8 @@ export interface EncryptionConfig {
204
222
  */
205
223
  resources?: string[];
206
224
  /**
207
- * <p>Key Management Service (KMS) key. Either the ARN or the alias can be used.</p>
225
+ * <p>Key Management Service (KMS) key. Either the ARN or the alias can be
226
+ * used.</p>
208
227
  */
209
228
  provider?: Provider;
210
229
  }
@@ -289,7 +308,7 @@ export interface ErrorDetail {
289
308
  * <p>
290
309
  * <b>OperationNotPermitted</b>: The service role
291
310
  * associated with the cluster doesn't have the required access permissions for
292
- * Amazon EKS.</p>
311
+ * Amazon EKS.</p>
293
312
  * </li>
294
313
  * <li>
295
314
  * <p>
@@ -630,8 +649,8 @@ export interface OidcIdentityProviderConfigRequest {
630
649
  /**
631
650
  * <p>The key value pairs that describe required claims in the identity token. If set, each
632
651
  * claim is verified to be present in the token with a matching value. For the maximum
633
- * 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
634
- * <i>Amazon EKS User Guide</i>.</p>
652
+ * number of claims that you can require, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/service-quotas.html">Amazon EKS service
653
+ * quotas</a> in the <i>Amazon EKS User Guide</i>.</p>
635
654
  */
636
655
  requiredClaims?: {
637
656
  [key: string]: string;
@@ -655,8 +674,7 @@ export interface AssociateIdentityProviderConfigRequest {
655
674
  oidc: OidcIdentityProviderConfigRequest | undefined;
656
675
  /**
657
676
  * <p>The metadata to apply to the configuration to assist with categorization and
658
- * organization. Each tag consists of a key and an optional value, both of which you
659
- * define.</p>
677
+ * organization. Each tag consists of a key and an optional value. You define both.</p>
660
678
  */
661
679
  tags?: {
662
680
  [key: string]: string;
@@ -692,11 +710,13 @@ export declare namespace AssociateIdentityProviderConfigResponse {
692
710
  const filterSensitiveLog: (obj: AssociateIdentityProviderConfigResponse) => any;
693
711
  }
694
712
  /**
695
- * <p>An Auto Scaling group that is associated with an Amazon EKS managed node group.</p>
713
+ * <p>An Auto Scaling group that is associated with an Amazon EKS managed node
714
+ * group.</p>
696
715
  */
697
716
  export interface AutoScalingGroup {
698
717
  /**
699
- * <p>The name of the Auto Scaling group associated with an Amazon EKS managed node group.</p>
718
+ * <p>The name of the Auto Scaling group associated with an Amazon EKS managed node
719
+ * group.</p>
700
720
  */
701
721
  name?: string;
702
722
  }
@@ -736,8 +756,8 @@ export interface CreateAddonRequest {
736
756
  */
737
757
  serviceAccountRoleArn?: string;
738
758
  /**
739
- * <p>How to resolve parameter value conflicts when migrating an existing add-on to an Amazon EKS
740
- * add-on.</p>
759
+ * <p>How to resolve parameter value conflicts when migrating an existing add-on to an
760
+ * Amazon EKS add-on.</p>
741
761
  */
742
762
  resolveConflicts?: ResolveConflicts | string;
743
763
  /**
@@ -747,7 +767,7 @@ export interface CreateAddonRequest {
747
767
  clientRequestToken?: string;
748
768
  /**
749
769
  * <p>The metadata to apply to the cluster to assist with categorization and organization.
750
- * Each tag consists of a key and an optional value, both of which you define. </p>
770
+ * Each tag consists of a key and an optional value. You define both.</p>
751
771
  */
752
772
  tags?: {
753
773
  [key: string]: string;
@@ -761,7 +781,8 @@ export declare namespace CreateAddonRequest {
761
781
  }
762
782
  export interface CreateAddonResponse {
763
783
  /**
764
- * <p>An Amazon EKS add-on.</p>
784
+ * <p>An Amazon EKS add-on. For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/eks-add-ons.html">Amazon EKS add-ons</a> in
785
+ * the <i>Amazon EKS User Guide</i>.</p>
765
786
  */
766
787
  addon?: Addon;
767
788
  }
@@ -771,20 +792,24 @@ export declare namespace CreateAddonResponse {
771
792
  */
772
793
  const filterSensitiveLog: (obj: CreateAddonResponse) => any;
773
794
  }
795
+ export declare enum IpFamily {
796
+ IPV4 = "ipv4",
797
+ IPV6 = "ipv6"
798
+ }
774
799
  /**
775
800
  * <p>The Kubernetes network configuration for the cluster.</p>
776
801
  */
777
802
  export interface KubernetesNetworkConfigRequest {
778
803
  /**
779
- * <p>The CIDR block to assign Kubernetes service IP addresses from. If you don't specify a
780
- * block, Kubernetes assigns addresses from either the 10.100.0.0/16 or 172.20.0.0/16 CIDR
781
- * blocks. We recommend that you specify a block that does not overlap with resources in
782
- * other networks that are peered or connected to your VPC. The block must meet the
783
- * following requirements:</p>
804
+ * <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.
805
+ * If you don't specify a block, Kubernetes assigns addresses from either the 10.100.0.0/16
806
+ * or 172.20.0.0/16 CIDR blocks. We recommend that you specify a block that does not
807
+ * overlap with resources in other networks that are peered or connected to your VPC. The
808
+ * block must meet the following requirements:</p>
784
809
  * <ul>
785
810
  * <li>
786
811
  * <p>Within one of the following private IP address blocks: 10.0.0.0/8,
787
- * 172.16.0.0.0/12, or 192.168.0.0/16.</p>
812
+ * 172.16.0.0/12, or 192.168.0.0/16.</p>
788
813
  * </li>
789
814
  * <li>
790
815
  * <p>Doesn't overlap with any CIDR block assigned to the VPC that you selected for
@@ -800,6 +825,22 @@ export interface KubernetesNetworkConfigRequest {
800
825
  * </important>
801
826
  */
802
827
  serviceIpv4Cidr?: string;
828
+ /**
829
+ * <p>Specify which IP version is used to assign Kubernetes Pod and Service IP addresses. If
830
+ * you don't specify a value, <code>ipv4</code> is used by default. You can only specify an
831
+ * IP family when you create a cluster and can't change this value once the cluster is
832
+ * created. If you specify <code>ipv6</code>, the VPC and subnets that you specify for
833
+ * cluster creation must have both IPv4 and IPv6 CIDR blocks assigned to them. </p>
834
+ * <p>You can only specify <code>ipv6</code> for 1.21 and later clusters that use version
835
+ * 1.10.0 or later of the Amazon VPC CNI add-on. If you specify <code>ipv6</code>, then ensure
836
+ * that your VPC meets the requirements and that you're familiar with the considerations
837
+ * listed in <a href="https://docs.aws.amazon.com/eks/latest/userguide/cni-ipv6.html">Assigning
838
+ * IPv6 addresses to Pods and Services</a> in the Amazon EKS User Guide. If
839
+ * you specify <code>ipv6</code>, Kubernetes assigns Service and Pod addresses from the
840
+ * unique local address range (fc00::/7). You can't specify a custom IPv6 CIDR
841
+ * block.</p>
842
+ */
843
+ ipFamily?: IpFamily | string;
803
844
  }
804
845
  export declare namespace KubernetesNetworkConfigRequest {
805
846
  /**
@@ -824,9 +865,8 @@ export interface LogSetup {
824
865
  */
825
866
  types?: (LogType | string)[];
826
867
  /**
827
- * <p>If a log type is enabled, that log type exports its control plane logs to CloudWatch Logs. If a
828
- * log type isn't enabled, that log type doesn't export its control plane logs. Each
829
- * individual log type can be enabled or disabled independently.</p>
868
+ * <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
869
+ * plane logs. Each individual log type can be enabled or disabled independently.</p>
830
870
  */
831
871
  enabled?: boolean;
832
872
  }
@@ -852,20 +892,22 @@ export declare namespace Logging {
852
892
  const filterSensitiveLog: (obj: Logging) => any;
853
893
  }
854
894
  /**
855
- * <p>An object representing the VPC configuration to use for an Amazon EKS cluster.</p>
895
+ * <p>An object representing the VPC configuration to use for an Amazon EKS
896
+ * cluster.</p>
856
897
  */
857
898
  export interface VpcConfigRequest {
858
899
  /**
859
- * <p>Specify subnets for your Amazon EKS nodes. Amazon EKS creates cross-account elastic network
860
- * interfaces in these subnets to allow communication between your nodes and the Kubernetes
861
- * control plane.</p>
900
+ * <p>Specify subnets for your Amazon EKS nodes. Amazon EKS creates
901
+ * cross-account elastic network interfaces in these subnets to allow communication between
902
+ * your nodes and the Kubernetes control plane.</p>
862
903
  */
863
904
  subnetIds?: string[];
864
905
  /**
865
906
  * <p>Specify one or more security groups for the cross-account elastic network interfaces
866
- * that Amazon EKS creates to use that allow communication between your nodes and the Kubernetes
867
- * control plane. If you don't specify any security groups, then familiarize yourself with
868
- * the difference between Amazon EKS defaults for clusters deployed with Kubernetes:</p>
907
+ * that Amazon EKS creates to use that allow communication between your nodes and
908
+ * the Kubernetes control plane. If you don't specify any security groups, then familiarize
909
+ * yourself with the difference between Amazon EKS defaults for clusters deployed
910
+ * with Kubernetes:</p>
869
911
  * <ul>
870
912
  * <li>
871
913
  * <p>1.14 Amazon EKS platform version <code>eks.2</code> and earlier</p>
@@ -885,8 +927,8 @@ export interface VpcConfigRequest {
885
927
  * Kubernetes API server endpoint. If you disable public access, your cluster's Kubernetes
886
928
  * API server can only receive requests from within the cluster VPC. The default value for
887
929
  * this parameter is <code>true</code>, which enables public access for your Kubernetes API
888
- * server. For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/cluster-endpoint.html">Amazon EKS cluster
889
- * endpoint access control</a> in the <i>
930
+ * 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
931
+ * <i>
890
932
  * <i>Amazon EKS User Guide</i>
891
933
  * </i>.</p>
892
934
  */
@@ -896,10 +938,11 @@ export interface VpcConfigRequest {
896
938
  * Kubernetes API server endpoint. If you enable private access, Kubernetes API requests
897
939
  * from within your cluster's VPC use the private VPC endpoint. The default value for this
898
940
  * parameter is <code>false</code>, which disables private access for your Kubernetes API
899
- * server. If you disable private access and you have nodes or Fargate pods in the
900
- * cluster, then ensure that <code>publicAccessCidrs</code> includes the necessary CIDR
901
- * 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
902
- * endpoint access control</a> in the <i>
941
+ * server. If you disable private access and you have nodes or Fargate
942
+ * pods in the cluster, then ensure that <code>publicAccessCidrs</code> includes the
943
+ * necessary CIDR blocks for communication with the nodes or Fargate pods.
944
+ * 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
945
+ * the <i>
903
946
  * <i>Amazon EKS User Guide</i>
904
947
  * </i>.</p>
905
948
  */
@@ -908,9 +951,10 @@ export interface VpcConfigRequest {
908
951
  * <p>The CIDR blocks that are allowed access to your cluster's public Kubernetes API server
909
952
  * endpoint. Communication to the endpoint from addresses outside of the CIDR blocks that
910
953
  * you specify is denied. The default value is <code>0.0.0.0/0</code>. If you've disabled
911
- * private endpoint access and you have nodes or Fargate pods in the cluster, then ensure
912
- * 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
913
- * endpoint access control</a> in the <i>
954
+ * private endpoint access and you have nodes or Fargate pods in the
955
+ * cluster, then ensure that you specify the necessary CIDR blocks. For more information,
956
+ * see <a href="https://docs.aws.amazon.com/eks/latest/userguide/cluster-endpoint.html">Amazon EKS cluster endpoint access control</a> in the
957
+ * <i>
914
958
  * <i>Amazon EKS User Guide</i>
915
959
  * </i>.</p>
916
960
  */
@@ -933,20 +977,19 @@ export interface CreateClusterRequest {
933
977
  */
934
978
  version?: string;
935
979
  /**
936
- * <p>The Amazon Resource Name (ARN) of the IAM role that provides permissions for the Kubernetes control
937
- * plane to make calls to Amazon Web Services API operations on your behalf. For more information, see
938
- * <a href="https://docs.aws.amazon.com/eks/latest/userguide/service_IAM_role.html">Amazon EKS
939
- * Service IAM Role</a> in the <i>
980
+ * <p>The Amazon Resource Name (ARN) of the IAM role that provides permissions for the
981
+ * Kubernetes control plane to make calls to Amazon Web Services API operations on your
982
+ * 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>
940
983
  * <i>Amazon EKS User Guide</i>
941
984
  * </i>.</p>
942
985
  */
943
986
  roleArn: string | undefined;
944
987
  /**
945
- * <p>The VPC configuration used by the cluster control plane. Amazon EKS VPC resources have
988
+ * <p>The VPC configuration that's used by the cluster control plane. Amazon EKS VPC resources have
946
989
  * 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
947
990
  * Considerations</a> and <a href="https://docs.aws.amazon.com/eks/latest/userguide/sec-group-reqs.html">Cluster Security Group Considerations</a> in the
948
991
  * <i>Amazon EKS User Guide</i>. You must specify at least two subnets. You can specify up to five
949
- * security groups, but we recommend that you use a dedicated security group for your
992
+ * security groups. However, we recommend that you use a dedicated security group for your
950
993
  * cluster control plane.</p>
951
994
  */
952
995
  resourcesVpcConfig: VpcConfigRequest | undefined;
@@ -956,14 +999,15 @@ export interface CreateClusterRequest {
956
999
  kubernetesNetworkConfig?: KubernetesNetworkConfigRequest;
957
1000
  /**
958
1001
  * <p>Enable or disable exporting the Kubernetes control plane logs for your cluster to
959
- * CloudWatch Logs. By default, cluster control plane logs aren't exported to CloudWatch Logs. For more
960
- * 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
1002
+ * CloudWatch Logs. By default, cluster control plane logs aren't exported to
1003
+ * 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
961
1004
  * <i>
962
1005
  * <i>Amazon EKS User Guide</i>
963
1006
  * </i>.</p>
964
1007
  * <note>
965
- * <p>CloudWatch Logs ingestion, archive storage, and data scanning rates apply to exported
966
- * control plane logs. For more information, see <a href="http://aws.amazon.com/cloudwatch/pricing/">CloudWatch Pricing</a>.</p>
1008
+ * <p>CloudWatch Logs ingestion, archive storage, and data scanning rates apply to
1009
+ * exported control plane logs. For more information, see <a href="http://aws.amazon.com/cloudwatch/pricing/">CloudWatch
1010
+ * Pricing</a>.</p>
967
1011
  * </note>
968
1012
  */
969
1013
  logging?: Logging;
@@ -974,7 +1018,7 @@ export interface CreateClusterRequest {
974
1018
  clientRequestToken?: string;
975
1019
  /**
976
1020
  * <p>The metadata to apply to the cluster to assist with categorization and organization.
977
- * Each tag consists of a key and an optional value, both of which you define.</p>
1021
+ * Each tag consists of a key and an optional value. You define both.</p>
978
1022
  */
979
1023
  tags?: {
980
1024
  [key: string]: string;
@@ -1021,8 +1065,8 @@ export interface ConnectorConfigResponse {
1021
1065
  */
1022
1066
  activationCode?: string;
1023
1067
  /**
1024
- * <p>The expiration time of the connected cluster. The cluster's YAML file must be applied through the native
1025
- * provider.</p>
1068
+ * <p>The expiration time of the connected cluster. The cluster's YAML file must be applied
1069
+ * through the native provider.</p>
1026
1070
  */
1027
1071
  activationExpiry?: Date;
1028
1072
  /**
@@ -1030,7 +1074,8 @@ export interface ConnectorConfigResponse {
1030
1074
  */
1031
1075
  provider?: string;
1032
1076
  /**
1033
- * <p>The Amazon Resource Name (ARN) of the role that is used by the EKS connector to communicate with AWS services from the connected Kubernetes cluster.</p>
1077
+ * <p>The Amazon Resource Name (ARN) of the role to communicate with services from the connected Kubernetes
1078
+ * cluster.</p>
1034
1079
  */
1035
1080
  roleArn?: string;
1036
1081
  }
@@ -1073,16 +1118,34 @@ export declare namespace Identity {
1073
1118
  const filterSensitiveLog: (obj: Identity) => any;
1074
1119
  }
1075
1120
  /**
1076
- * <p>The Kubernetes network configuration for the cluster.</p>
1121
+ * <p>The Kubernetes network configuration for the cluster. The response contains a value
1122
+ * for <b>serviceIpv6Cidr</b> or <b>serviceIpv4Cidr</b>, but not both. </p>
1077
1123
  */
1078
1124
  export interface KubernetesNetworkConfigResponse {
1079
1125
  /**
1080
- * <p>The CIDR block that Kubernetes service IP addresses are assigned from. If you didn't
1081
- * specify a CIDR block when you created the cluster, then Kubernetes assigns addresses
1082
- * from either the 10.100.0.0/16 or 172.20.0.0/16 CIDR blocks. If this was specified, then
1083
- * it was specified when the cluster was created and it cannot be changed.</p>
1126
+ * <p>The CIDR block that Kubernetes Pod and Service IP addresses are assigned from.
1127
+ * Kubernetes assigns addresses from an IPv4 CIDR block assigned to a subnet that the node
1128
+ * is in. If you didn't specify a CIDR block when you created the cluster, then Kubernetes
1129
+ * assigns addresses from either the 10.100.0.0/16 or 172.20.0.0/16 CIDR blocks. If this
1130
+ * was specified, then it was specified when the cluster was created and it can't be
1131
+ * changed.</p>
1084
1132
  */
1085
1133
  serviceIpv4Cidr?: string;
1134
+ /**
1135
+ * <p>The CIDR block that Kubernetes Pod and Service IP addresses are assigned from if you
1136
+ * created a 1.21 or later cluster with version 1.10.0 or later of the Amazon VPC CNI add-on and
1137
+ * specified <code>ipv6</code> for <b>ipFamily</b> when you
1138
+ * created the cluster. Kubernetes assigns addresses from the unique local address range
1139
+ * (fc00::/7).</p>
1140
+ */
1141
+ serviceIpv6Cidr?: string;
1142
+ /**
1143
+ * <p>The IP family used to assign Kubernetes Pod and Service IP addresses. The IP family is
1144
+ * always <code>ipv4</code>, unless you have a <code>1.21</code> or later cluster running
1145
+ * version 1.10.0 or later of the Amazon VPC CNI add-on and specified <code>ipv6</code> when you
1146
+ * created the cluster. </p>
1147
+ */
1148
+ ipFamily?: IpFamily | string;
1086
1149
  }
1087
1150
  export declare namespace KubernetesNetworkConfigResponse {
1088
1151
  /**
@@ -1091,7 +1154,8 @@ export declare namespace KubernetesNetworkConfigResponse {
1091
1154
  const filterSensitiveLog: (obj: KubernetesNetworkConfigResponse) => any;
1092
1155
  }
1093
1156
  /**
1094
- * <p>An object representing an Amazon EKS cluster VPC configuration response.</p>
1157
+ * <p>An object representing an Amazon EKS cluster VPC configuration
1158
+ * response.</p>
1095
1159
  */
1096
1160
  export interface VpcConfigResponse {
1097
1161
  /**
@@ -1105,8 +1169,9 @@ export interface VpcConfigResponse {
1105
1169
  */
1106
1170
  securityGroupIds?: string[];
1107
1171
  /**
1108
- * <p>The cluster security group that was created by Amazon EKS for the cluster. Managed node
1109
- * groups use this security group for control-plane-to-data-plane communication.</p>
1172
+ * <p>The cluster security group that was created by Amazon EKS for the cluster.
1173
+ * Managed node groups use this security group for control-plane-to-data-plane
1174
+ * communication.</p>
1110
1175
  */
1111
1176
  clusterSecurityGroupId?: string;
1112
1177
  /**
@@ -1114,19 +1179,21 @@ export interface VpcConfigResponse {
1114
1179
  */
1115
1180
  vpcId?: string;
1116
1181
  /**
1117
- * <p>This parameter indicates whether the Amazon EKS public API server endpoint is enabled. If
1118
- * the Amazon EKS public API server endpoint is disabled, your cluster's Kubernetes API server
1119
- * can only receive requests that originate from within the cluster VPC.</p>
1182
+ * <p>This parameter indicates whether the Amazon EKS public API server endpoint is
1183
+ * enabled. If the Amazon EKS public API server endpoint is disabled, your
1184
+ * cluster's Kubernetes API server can only receive requests that originate from within the
1185
+ * cluster VPC.</p>
1120
1186
  */
1121
1187
  endpointPublicAccess?: boolean;
1122
1188
  /**
1123
- * <p>This parameter indicates whether the Amazon EKS private API server endpoint is enabled. If
1124
- * the Amazon EKS private API server endpoint is enabled, Kubernetes API requests that originate
1125
- * from within your cluster's VPC use the private VPC endpoint instead of traversing the
1126
- * internet. If this value is disabled and you have nodes or Fargate pods in the cluster,
1127
- * then ensure that <code>publicAccessCidrs</code> includes the necessary CIDR blocks for
1128
- * 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
1129
- * endpoint access control</a> in the <i>
1189
+ * <p>This parameter indicates whether the Amazon EKS private API server endpoint is
1190
+ * enabled. If the Amazon EKS private API server endpoint is enabled, Kubernetes
1191
+ * API requests that originate from within your cluster's VPC use the private VPC endpoint
1192
+ * instead of traversing the internet. If this value is disabled and you have nodes or
1193
+ * Fargate pods in the cluster, then ensure that
1194
+ * <code>publicAccessCidrs</code> includes the necessary CIDR blocks for communication
1195
+ * 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
1196
+ * <i>
1130
1197
  * <i>Amazon EKS User Guide</i>
1131
1198
  * </i>.</p>
1132
1199
  */
@@ -1135,9 +1202,9 @@ export interface VpcConfigResponse {
1135
1202
  * <p>The CIDR blocks that are allowed access to your cluster's public Kubernetes API server
1136
1203
  * endpoint. Communication to the endpoint from addresses outside of the listed CIDR blocks
1137
1204
  * is denied. The default value is <code>0.0.0.0/0</code>. If you've disabled private
1138
- * endpoint access and you have nodes or Fargate pods in the cluster, then ensure that the
1139
- * 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
1140
- * endpoint access control</a> in the <i>
1205
+ * endpoint access and you have nodes or Fargate pods in the cluster,
1206
+ * 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
1207
+ * <i>
1141
1208
  * <i>Amazon EKS User Guide</i>
1142
1209
  * </i>.</p>
1143
1210
  */
@@ -1175,15 +1242,16 @@ export interface Cluster {
1175
1242
  */
1176
1243
  endpoint?: string;
1177
1244
  /**
1178
- * <p>The Amazon Resource Name (ARN) of the IAM role that provides permissions for the Kubernetes control
1179
- * plane to make calls to Amazon Web Services API operations on your behalf.</p>
1245
+ * <p>The Amazon Resource Name (ARN) of the IAM role that provides permissions for the
1246
+ * Kubernetes control plane to make calls to Amazon Web Services API operations on your
1247
+ * behalf.</p>
1180
1248
  */
1181
1249
  roleArn?: string;
1182
1250
  /**
1183
- * <p>The VPC configuration used by the cluster control plane. Amazon EKS VPC resources have
1184
- * 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
1185
- * Considerations</a> and <a href="https://docs.aws.amazon.com/eks/latest/userguide/sec-group-reqs.html">Cluster Security Group Considerations</a> in the
1186
- * <i>Amazon EKS User Guide</i>.</p>
1251
+ * <p>The VPC configuration used by the cluster control plane. Amazon EKS VPC
1252
+ * resources have specific requirements to work properly with Kubernetes. For more
1253
+ * 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
1254
+ * Group Considerations</a> in the <i>Amazon EKS User Guide</i>.</p>
1187
1255
  */
1188
1256
  resourcesVpcConfig?: VpcConfigResponse;
1189
1257
  /**
@@ -1212,16 +1280,16 @@ export interface Cluster {
1212
1280
  */
1213
1281
  clientRequestToken?: string;
1214
1282
  /**
1215
- * <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
1216
- * Versions</a> in the <i>
1283
+ * <p>The platform version of your Amazon EKS cluster. For more information, see
1284
+ * <a href="https://docs.aws.amazon.com/eks/latest/userguide/platform-versions.html">Platform Versions</a> in the <i>
1217
1285
  * <i>Amazon EKS User Guide</i>
1218
1286
  * </i>.</p>
1219
1287
  */
1220
1288
  platformVersion?: string;
1221
1289
  /**
1222
1290
  * <p>The metadata that you apply to the cluster to assist with categorization and
1223
- * organization. Each tag consists of a key and an optional value, both of which you
1224
- * define. Cluster tags do not propagate to any other resources associated with the
1291
+ * organization. Each tag consists of a key and an optional value. You define both.
1292
+ * Cluster tags do not propagate to any other resources associated with the
1225
1293
  * cluster.</p>
1226
1294
  */
1227
1295
  tags?: {
@@ -1292,8 +1360,9 @@ export declare namespace ServiceUnavailableException {
1292
1360
  }
1293
1361
  /**
1294
1362
  * <p>At least one of your specified cluster subnets is in an Availability Zone that does
1295
- * not support Amazon EKS. The exception output specifies the supported Availability Zones for
1296
- * your account, from which you can choose subnets for your cluster.</p>
1363
+ * not support Amazon EKS. The exception output specifies the supported
1364
+ * Availability Zones for your account, from which you can choose subnets for your
1365
+ * cluster.</p>
1297
1366
  */
1298
1367
  export interface UnsupportedAvailabilityZoneException extends __SmithyException, $MetadataBearer {
1299
1368
  name: "UnsupportedAvailabilityZoneException";
@@ -1347,27 +1416,28 @@ export interface CreateFargateProfileRequest {
1347
1416
  */
1348
1417
  fargateProfileName: string | undefined;
1349
1418
  /**
1350
- * <p>The name of the Amazon EKS cluster to apply the Fargate profile to.</p>
1419
+ * <p>The name of the Amazon EKS cluster to apply the Fargate profile
1420
+ * to.</p>
1351
1421
  */
1352
1422
  clusterName: string | undefined;
1353
1423
  /**
1354
1424
  * <p>The Amazon Resource Name (ARN) of the pod execution role to use for pods that match the selectors in
1355
- * the Fargate profile. The pod execution role allows Fargate infrastructure to register with
1356
- * your cluster as a node, and it provides read access to Amazon ECR image repositories. For
1357
- * more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/pod-execution-role.html">Pod Execution Role</a> in the
1358
- * <i>Amazon EKS User Guide</i>.</p>
1425
+ * the Fargate profile. The pod execution role allows Fargate
1426
+ * infrastructure to register with your cluster as a node, and it provides read access to
1427
+ * Amazon ECR image repositories. For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/pod-execution-role.html">Pod
1428
+ * Execution Role</a> in the <i>Amazon EKS User Guide</i>.</p>
1359
1429
  */
1360
1430
  podExecutionRoleArn: string | undefined;
1361
1431
  /**
1362
- * <p>The IDs of subnets to launch your pods into. At this time, pods running on Fargate are
1363
- * not assigned public IP addresses, so only private subnets (with no direct route to an
1364
- * Internet Gateway) are accepted for this parameter.</p>
1432
+ * <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
1433
+ * no direct route to an Internet Gateway) are accepted for this parameter.</p>
1365
1434
  */
1366
1435
  subnets?: string[];
1367
1436
  /**
1368
- * <p>The selectors to match for pods to use this Fargate profile. Each selector must have an
1369
- * associated namespace. Optionally, you can also specify labels for a namespace. You may
1370
- * specify up to five selectors in a Fargate profile.</p>
1437
+ * <p>The selectors to match for pods to use this Fargate profile. Each
1438
+ * selector must have an associated namespace. Optionally, you can also specify labels for
1439
+ * a namespace. You may specify up to five selectors in a Fargate
1440
+ * profile.</p>
1371
1441
  */
1372
1442
  selectors?: FargateProfileSelector[];
1373
1443
  /**
@@ -1377,8 +1447,8 @@ export interface CreateFargateProfileRequest {
1377
1447
  clientRequestToken?: string;
1378
1448
  /**
1379
1449
  * <p>The metadata to apply to the Fargate profile to assist with categorization and
1380
- * organization. Each tag consists of a key and an optional value, both of which you
1381
- * define. Fargate profile tags do not propagate to any other resources associated with the
1450
+ * organization. Each tag consists of a key and an optional value. You define both.
1451
+ * Fargate profile tags do not propagate to any other resources associated with the
1382
1452
  * Fargate profile, such as the pods that are scheduled with it.</p>
1383
1453
  */
1384
1454
  tags?: {
@@ -1405,11 +1475,13 @@ export interface FargateProfile {
1405
1475
  */
1406
1476
  fargateProfileArn?: string;
1407
1477
  /**
1408
- * <p>The name of the Amazon EKS cluster that the Fargate profile belongs to.</p>
1478
+ * <p>The name of the Amazon EKS cluster that the Fargate profile
1479
+ * belongs to.</p>
1409
1480
  */
1410
1481
  clusterName?: string;
1411
1482
  /**
1412
- * <p>The Unix epoch timestamp in seconds for when the Fargate profile was created.</p>
1483
+ * <p>The Unix epoch timestamp in seconds for when the Fargate profile was
1484
+ * created.</p>
1413
1485
  */
1414
1486
  createdAt?: Date;
1415
1487
  /**
@@ -1432,8 +1504,8 @@ export interface FargateProfile {
1432
1504
  status?: FargateProfileStatus | string;
1433
1505
  /**
1434
1506
  * <p>The metadata applied to the Fargate profile to assist with categorization and
1435
- * organization. Each tag consists of a key and an optional value, both of which you
1436
- * define. Fargate profile tags do not propagate to any other resources associated with the
1507
+ * organization. Each tag consists of a key and an optional value. You define both.
1508
+ * Fargate profile tags do not propagate to any other resources associated with the
1437
1509
  * Fargate profile, such as the pods that are scheduled with it.</p>
1438
1510
  */
1439
1511
  tags?: {
@@ -1474,8 +1546,8 @@ export declare type CapacityTypes = "ON_DEMAND" | "SPOT";
1474
1546
  * </a>, or the node group deployment or
1475
1547
  * update will fail. For more information about launch templates, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateLaunchTemplate.html">
1476
1548
  * <code>CreateLaunchTemplate</code>
1477
- * </a> in the Amazon EC2 API Reference.
1478
- * 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>
1549
+ * </a> in the Amazon EC2 API
1550
+ * 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>
1479
1551
  * <p>Specify either <code>name</code> or <code>id</code>, but not both.</p>
1480
1552
  */
1481
1553
  export interface LaunchTemplateSpecification {
@@ -1505,16 +1577,15 @@ export declare namespace LaunchTemplateSpecification {
1505
1577
  */
1506
1578
  export interface RemoteAccessConfig {
1507
1579
  /**
1508
- * <p>The Amazon EC2 SSH key that provides access for SSH communication with the nodes in the
1509
- * managed node group. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-key-pairs.html">Amazon EC2 key
1510
- * pairs and Linux instances</a> in the <i>Amazon Elastic Compute Cloud User Guide for Linux Instances</i>.</p>
1580
+ * <p>The Amazon EC2 SSH key that provides access for SSH communication with the
1581
+ * 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>
1511
1582
  */
1512
1583
  ec2SshKey?: string;
1513
1584
  /**
1514
1585
  * <p>The security groups that are allowed SSH access (port 22) to the nodes. If you specify
1515
- * an Amazon EC2 SSH key but do not specify a source security group when you create a managed
1516
- * node group, then port 22 on the nodes is opened to the internet (0.0.0.0/0). For more
1517
- * information, see <a href="https://docs.aws.amazon.com/vpc/latest/userguide/VPC_SecurityGroups.html">Security Groups for Your VPC</a> in the
1586
+ * an Amazon EC2 SSH key but do not specify a source security group when you create
1587
+ * a managed node group, then port 22 on the nodes is opened to the internet (0.0.0.0/0).
1588
+ * 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
1518
1589
  * <i>Amazon Virtual Private Cloud User Guide</i>.</p>
1519
1590
  */
1520
1591
  sourceSecurityGroups?: string[];
@@ -1538,12 +1609,30 @@ export interface NodegroupScalingConfig {
1538
1609
  minSize?: number;
1539
1610
  /**
1540
1611
  * <p>The maximum number of nodes that the managed node group can scale out to. For
1541
- * 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
1542
- * quotas</a> in the <i>Amazon EKS User Guide</i>.</p>
1612
+ * 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>
1543
1613
  */
1544
1614
  maxSize?: number;
1545
1615
  /**
1546
1616
  * <p>The current number of nodes that the managed node group should maintain.</p>
1617
+ * <important>
1618
+ * <p>If you use Cluster Autoscaler, you shouldn't change the desiredSize value
1619
+ * directly, as this can cause the Cluster Autoscaler to suddenly scale up or scale
1620
+ * down.</p>
1621
+ * </important>
1622
+ * <p>Whenever this parameter changes, the number of worker nodes in the node group is
1623
+ * updated to the specified size. If this parameter is given a value that is smaller than
1624
+ * the current number of running worker nodes, the necessary number of worker nodes are
1625
+ * terminated to match the given value.
1626
+ *
1627
+ * When using CloudFormation, no action occurs if you remove this parameter from your CFN
1628
+ * template.</p>
1629
+ * <p>This parameter can be different from minSize in some cases, such as when starting with
1630
+ * extra hosts for testing. This parameter can also be different when you want to start
1631
+ * with an estimated number of needed hosts, but let Cluster Autoscaler reduce the number
1632
+ * if there are too many. When Cluster Autoscaler is used, the desiredSize parameter is
1633
+ * altered by Cluster Autoscaler (but can be out-of-date for short periods of time).
1634
+ * Cluster Autoscaler doesn't scale a managed node group lower than minSize or higher than
1635
+ * maxSize.</p>
1547
1636
  */
1548
1637
  desiredSize?: number;
1549
1638
  }
@@ -1586,14 +1675,15 @@ export declare namespace Taint {
1586
1675
  */
1587
1676
  export interface NodegroupUpdateConfig {
1588
1677
  /**
1589
- * <p>The maximum number of nodes unavailable at once during a version update. Nodes will be updated in parallel.
1590
- * This value or <code>maxUnavailablePercentage</code> is required to have a value.The maximum number
1591
- * is 100.</p>
1678
+ * <p>The maximum number of nodes unavailable at once during a version update. Nodes will be
1679
+ * updated in parallel. This value or <code>maxUnavailablePercentage</code> is required to
1680
+ * have a value.The maximum number is 100.</p>
1592
1681
  */
1593
1682
  maxUnavailable?: number;
1594
1683
  /**
1595
- * <p>The maximum percentage of nodes unavailable during a version update. This percentage of nodes will be
1596
- * updated in parallel, up to 100 nodes at once. This value or <code>maxUnavailable</code> is required to have a value.</p>
1684
+ * <p>The maximum percentage of nodes unavailable during a version update. This percentage
1685
+ * of nodes will be updated in parallel, up to 100 nodes at once. This value or
1686
+ * <code>maxUnavailable</code> is required to have a value.</p>
1597
1687
  */
1598
1688
  maxUnavailablePercentage?: number;
1599
1689
  }
@@ -1649,9 +1739,10 @@ export interface CreateNodegroupRequest {
1649
1739
  * <p>The AMI type for your node group. GPU instance types should use the
1650
1740
  * <code>AL2_x86_64_GPU</code> AMI type. Non-GPU instances should use the
1651
1741
  * <code>AL2_x86_64</code> AMI type. Arm instances should use the
1652
- * <code>AL2_ARM_64</code> AMI type. All types use the Amazon EKS optimized Amazon Linux 2 AMI.
1653
- * If you specify <code>launchTemplate</code>, and your launch template uses a custom AMI, then don't specify <code>amiType</code>,
1654
- * 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>
1742
+ * <code>AL2_ARM_64</code> AMI type. All types use the Amazon EKS optimized
1743
+ * Amazon Linux 2 AMI. If you specify <code>launchTemplate</code>, and your launch template uses a custom AMI,
1744
+ * then don't specify <code>amiType</code>, or the node group deployment
1745
+ * 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>
1655
1746
  */
1656
1747
  amiType?: AMITypes | string;
1657
1748
  /**
@@ -1661,15 +1752,15 @@ export interface CreateNodegroupRequest {
1661
1752
  */
1662
1753
  remoteAccess?: RemoteAccessConfig;
1663
1754
  /**
1664
- * <p>The Amazon Resource Name (ARN) of the IAM role to associate with your node group. The Amazon EKS worker
1665
- * node <code>kubelet</code> daemon makes calls to Amazon Web Services APIs on your behalf. Nodes receive
1666
- * permissions for these API calls through an IAM instance profile and associated
1667
- * policies. Before you can launch nodes and register them into a cluster, you must create
1668
- * an IAM role for those nodes to use when they are launched. For more information, see
1669
- * <a href="https://docs.aws.amazon.com/eks/latest/userguide/worker_node_IAM_role.html">Amazon EKS node IAM role</a> in the <i>
1755
+ * <p>The Amazon Resource Name (ARN) of the IAM role to associate with your node group. The
1756
+ * 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
1757
+ * through an IAM instance profile and associated policies. Before you can
1758
+ * launch nodes and register them into a cluster, you must create an IAM
1759
+ * 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
1760
+ * <i>
1670
1761
  * <i>Amazon EKS User Guide</i>
1671
- * </i>.
1672
- * If you specify <code>launchTemplate</code>, then don't specify <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_IamInstanceProfile.html">
1762
+ * </i>. If you specify <code>launchTemplate</code>, then don't specify
1763
+ * <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_IamInstanceProfile.html">
1673
1764
  * <code>IamInstanceProfile</code>
1674
1765
  * </a> in your launch template,
1675
1766
  * 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>
@@ -1688,8 +1779,8 @@ export interface CreateNodegroupRequest {
1688
1779
  taints?: Taint[];
1689
1780
  /**
1690
1781
  * <p>The metadata to apply to the node group to assist with categorization and
1691
- * organization. Each tag consists of a key and an optional value, both of which you
1692
- * define. Node group tags do not propagate to any other resources associated with the node
1782
+ * organization. Each tag consists of a key and an optional value. You
1783
+ * define both. Node group tags do not propagate to any other resources associated with the node
1693
1784
  * group, such as the Amazon EC2 instances or subnets.</p>
1694
1785
  */
1695
1786
  tags?: {
@@ -1723,12 +1814,11 @@ export interface CreateNodegroupRequest {
1723
1814
  */
1724
1815
  version?: string;
1725
1816
  /**
1726
- * <p>The AMI version of the Amazon EKS optimized AMI to use with your node group. By default,
1727
- * the latest available AMI version for the node group's current Kubernetes version is
1728
- * used. For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/eks-linux-ami-versions.html">Amazon EKS
1729
- * optimized Amazon Linux 2 AMI versions</a> in the <i>Amazon EKS User Guide</i>. If you specify <code>launchTemplate</code>,
1730
- * and your launch template uses a custom AMI, then don't specify <code>releaseVersion</code>, or the node group
1731
- * 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>
1817
+ * <p>The AMI version of the Amazon EKS optimized AMI to use with your node group.
1818
+ * By default, the latest available AMI version for the node group's current Kubernetes
1819
+ * 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>.
1820
+ * If you specify <code>launchTemplate</code>, and your launch template uses a custom AMI, then don't specify <code>releaseVersion</code>,
1821
+ * 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>
1732
1822
  */
1733
1823
  releaseVersion?: string;
1734
1824
  }
@@ -1767,40 +1857,40 @@ export interface Issue {
1767
1857
  * <ul>
1768
1858
  * <li>
1769
1859
  * <p>
1770
- * <b>AccessDenied</b>: Amazon EKS or one or more of your
1771
- * managed nodes is failing to authenticate or authorize with your Kubernetes
1772
- * cluster API server.</p>
1860
+ * <b>AccessDenied</b>: Amazon EKS or one or
1861
+ * more of your managed nodes is failing to authenticate or authorize with your
1862
+ * Kubernetes cluster API server.</p>
1773
1863
  * </li>
1774
1864
  * <li>
1775
1865
  * <p>
1776
- * <b>AsgInstanceLaunchFailures</b>: Your Auto Scaling group is
1777
- * experiencing failures while attempting to launch instances.</p>
1866
+ * <b>AsgInstanceLaunchFailures</b>: Your Auto Scaling group is experiencing failures while attempting to launch
1867
+ * instances.</p>
1778
1868
  * </li>
1779
1869
  * <li>
1780
1870
  * <p>
1781
1871
  * <b>AutoScalingGroupNotFound</b>: We couldn't find
1782
- * the Auto Scaling group associated with the managed node group. You may be able to
1783
- * recreate an Auto Scaling group with the same settings to recover.</p>
1872
+ * the Auto Scaling group associated with the managed node group. You may be
1873
+ * able to recreate an Auto Scaling group with the same settings to
1874
+ * recover.</p>
1784
1875
  * </li>
1785
1876
  * <li>
1786
1877
  * <p>
1787
- * <b>ClusterUnreachable</b>: Amazon EKS or one or more of
1788
- * your managed nodes is unable to to communicate with your Kubernetes cluster API
1789
- * server. This can happen if there are network disruptions or if API servers are
1790
- * timing out processing requests. </p>
1878
+ * <b>ClusterUnreachable</b>: Amazon EKS or one
1879
+ * or more of your managed nodes is unable to to communicate with your Kubernetes
1880
+ * cluster API server. This can happen if there are network disruptions or if API
1881
+ * servers are timing out processing requests. </p>
1791
1882
  * </li>
1792
1883
  * <li>
1793
1884
  * <p>
1794
1885
  * <b>Ec2LaunchTemplateNotFound</b>: We couldn't find
1795
- * the Amazon EC2 launch template for your managed node group. You may be able to
1796
- * recreate a launch template with the same settings to recover.</p>
1886
+ * the Amazon EC2 launch template for your managed node group. You may be
1887
+ * able to recreate a launch template with the same settings to recover.</p>
1797
1888
  * </li>
1798
1889
  * <li>
1799
1890
  * <p>
1800
- * <b>Ec2LaunchTemplateVersionMismatch</b>: The Amazon EC2
1801
- * launch template version for your managed node group does not match the version
1802
- * that Amazon EKS created. You may be able to revert to the version that Amazon EKS created
1803
- * to recover.</p>
1891
+ * <b>Ec2LaunchTemplateVersionMismatch</b>: The Amazon EC2 launch template version for your managed node group does not
1892
+ * match the version that Amazon EKS created. You may be able to revert to
1893
+ * the version that Amazon EKS created to recover.</p>
1804
1894
  * </li>
1805
1895
  * <li>
1806
1896
  * <p>
@@ -1817,30 +1907,31 @@ export interface Issue {
1817
1907
  * <li>
1818
1908
  * <p>
1819
1909
  * <b>Ec2SubnetInvalidConfiguration</b>: One or more
1820
- * Amazon EC2 subnets specified for a node group do not automatically assign public IP
1821
- * addresses to instances launched into it. If you want your instances to be
1822
- * assigned a public IP address, then you need to enable the <code>auto-assign
1823
- * 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
1910
+ * Amazon EC2 subnets specified for a node group do not automatically
1911
+ * assign public IP addresses to instances launched into it. If you want your
1912
+ * instances to be assigned a public IP address, then you need to enable the
1913
+ * <code>auto-assign public IP address</code> setting for the subnet. See
1914
+ * <a href="https://docs.aws.amazon.com/vpc/latest/userguide/vpc-ip-addressing.html#subnet-public-ip">Modifying
1824
1915
  * the public IPv4 addressing attribute for your subnet</a> in the Amazon
1825
1916
  * VPC User Guide.</p>
1826
1917
  * </li>
1827
1918
  * <li>
1828
1919
  * <p>
1829
1920
  * <b>IamInstanceProfileNotFound</b>: We couldn't find
1830
- * the IAM instance profile for your managed node group. You may be able to
1831
- * recreate an instance profile with the same settings to recover.</p>
1921
+ * the IAM instance profile for your managed node group. You may be
1922
+ * able to recreate an instance profile with the same settings to recover.</p>
1832
1923
  * </li>
1833
1924
  * <li>
1834
1925
  * <p>
1835
1926
  * <b>IamNodeRoleNotFound</b>: We couldn't find the
1836
- * IAM role for your managed node group. You may be able to recreate an IAM role
1837
- * with the same settings to recover.</p>
1927
+ * IAM role for your managed node group. You may be able to
1928
+ * recreate an IAM role with the same settings to recover.</p>
1838
1929
  * </li>
1839
1930
  * <li>
1840
1931
  * <p>
1841
- * <b>InstanceLimitExceeded</b>: Your Amazon Web Services account is
1842
- * unable to launch any more instances of the specified instance type. You may be
1843
- * able to request an Amazon EC2 instance limit increase to recover.</p>
1932
+ * <b>InstanceLimitExceeded</b>: Your Amazon Web Services account is unable to launch any more instances of the specified instance
1933
+ * type. You may be able to request an Amazon EC2 instance limit increase
1934
+ * to recover.</p>
1844
1935
  * </li>
1845
1936
  * <li>
1846
1937
  * <p>
@@ -1857,7 +1948,7 @@ export interface Issue {
1857
1948
  * <p>
1858
1949
  * <b>NodeCreationFailure</b>: Your launched instances
1859
1950
  * are unable to register with your Amazon EKS cluster. Common causes of this failure
1860
- * are insufficient <a href="https://docs.aws.amazon.com/eks/latest/userguide/worker_node_IAM_role.html">node IAM role</a>
1951
+ * are insufficient <a href="https://docs.aws.amazon.com/eks/latest/userguide/create-node-role.html">node IAM role</a>
1861
1952
  * permissions or lack of outbound internet access for the nodes. </p>
1862
1953
  * </li>
1863
1954
  * </ul>
@@ -1938,8 +2029,8 @@ export interface Nodegroup {
1938
2029
  /**
1939
2030
  * <p>If the node group was deployed using a launch template with a custom AMI, then this is
1940
2031
  * the AMI ID that was specified in the launch template. For node groups that weren't
1941
- * deployed using a launch template, this is the version of the Amazon EKS optimized AMI that
1942
- * the node group was deployed with.</p>
2032
+ * deployed using a launch template, this is the version of the Amazon EKS
2033
+ * optimized AMI that the node group was deployed with.</p>
1943
2034
  */
1944
2035
  releaseVersion?: string;
1945
2036
  /**
@@ -1989,16 +2080,17 @@ export interface Nodegroup {
1989
2080
  */
1990
2081
  amiType?: AMITypes | string;
1991
2082
  /**
1992
- * <p>The IAM role associated with your node group. The Amazon EKS node <code>kubelet</code>
1993
- * daemon makes calls to Amazon Web Services APIs on your behalf. Nodes receive permissions for these API
1994
- * calls through an IAM instance profile and associated policies.</p>
2083
+ * <p>The IAM role associated with your node group. The Amazon EKS
2084
+ * node <code>kubelet</code> daemon makes calls to Amazon Web Services APIs on your behalf.
2085
+ * Nodes receive permissions for these API calls through an IAM instance
2086
+ * profile and associated policies.</p>
1995
2087
  */
1996
2088
  nodeRole?: string;
1997
2089
  /**
1998
2090
  * <p>The Kubernetes labels applied to the nodes in the node group.</p>
1999
2091
  * <note>
2000
- * <p>Only labels that are applied with the Amazon EKS API are shown here. There may be other
2001
- * Kubernetes labels applied to the nodes in this group.</p>
2092
+ * <p>Only labels that are applied with the Amazon EKS API are shown here. There
2093
+ * may be other Kubernetes labels applied to the nodes in this group.</p>
2002
2094
  * </note>
2003
2095
  */
2004
2096
  labels?: {
@@ -2006,9 +2098,9 @@ export interface Nodegroup {
2006
2098
  };
2007
2099
  /**
2008
2100
  * <p>The Kubernetes taints to be applied to the nodes in the node group when they are
2009
- * created. Effect is one of <code>No_Schedule</code>, <code>Prefer_No_Schedule</code>, or <code>No_Execute</code>. Kubernetes taints
2010
- * can be used together with tolerations to control how workloads are scheduled to your
2011
- * nodes.</p>
2101
+ * created. Effect is one of <code>No_Schedule</code>, <code>Prefer_No_Schedule</code>, or
2102
+ * <code>No_Execute</code>. Kubernetes taints can be used together with tolerations to
2103
+ * control how workloads are scheduled to your nodes.</p>
2012
2104
  */
2013
2105
  taints?: Taint[];
2014
2106
  /**
@@ -2038,7 +2130,7 @@ export interface Nodegroup {
2038
2130
  launchTemplate?: LaunchTemplateSpecification;
2039
2131
  /**
2040
2132
  * <p>The metadata applied to the node group to assist with categorization and organization.
2041
- * Each tag consists of a key and an optional value, both of which you define. Node group
2133
+ * Each tag consists of a key and an optional value. You define both. Node group
2042
2134
  * tags do not propagate to any other resources associated with the node group, such as the
2043
2135
  * Amazon EC2 instances or subnets. </p>
2044
2136
  */
@@ -2076,7 +2168,8 @@ export interface DeleteAddonRequest {
2076
2168
  */
2077
2169
  addonName: string | undefined;
2078
2170
  /**
2079
- * <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>
2171
+ * <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
2172
+ * account is associated with the add-on, it is not removed.</p>
2080
2173
  */
2081
2174
  preserve?: boolean;
2082
2175
  }
@@ -2088,7 +2181,8 @@ export declare namespace DeleteAddonRequest {
2088
2181
  }
2089
2182
  export interface DeleteAddonResponse {
2090
2183
  /**
2091
- * <p>An Amazon EKS add-on.</p>
2184
+ * <p>An Amazon EKS add-on. For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/eks-add-ons.html">Amazon EKS add-ons</a> in
2185
+ * the <i>Amazon EKS User Guide</i>.</p>
2092
2186
  */
2093
2187
  addon?: Addon;
2094
2188
  }
@@ -2124,7 +2218,8 @@ export declare namespace DeleteClusterResponse {
2124
2218
  }
2125
2219
  export interface DeleteFargateProfileRequest {
2126
2220
  /**
2127
- * <p>The name of the Amazon EKS cluster associated with the Fargate profile to delete.</p>
2221
+ * <p>The name of the Amazon EKS cluster associated with the Fargate
2222
+ * profile to delete.</p>
2128
2223
  */
2129
2224
  clusterName: string | undefined;
2130
2225
  /**
@@ -2152,7 +2247,8 @@ export declare namespace DeleteFargateProfileResponse {
2152
2247
  }
2153
2248
  export interface DeleteNodegroupRequest {
2154
2249
  /**
2155
- * <p>The name of the Amazon EKS cluster that is associated with your node group.</p>
2250
+ * <p>The name of the Amazon EKS cluster that is associated with your node
2251
+ * group.</p>
2156
2252
  */
2157
2253
  clusterName: string | undefined;
2158
2254
  /**
@@ -2222,7 +2318,8 @@ export declare namespace DescribeAddonRequest {
2222
2318
  }
2223
2319
  export interface DescribeAddonResponse {
2224
2320
  /**
2225
- * <p>An Amazon EKS add-on.</p>
2321
+ * <p>An Amazon EKS add-on. For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/eks-add-ons.html">Amazon EKS add-ons</a> in
2322
+ * the <i>Amazon EKS User Guide</i>.</p>
2226
2323
  */
2227
2324
  addon?: Addon;
2228
2325
  }
@@ -2314,7 +2411,8 @@ export declare namespace DescribeClusterResponse {
2314
2411
  }
2315
2412
  export interface DescribeFargateProfileRequest {
2316
2413
  /**
2317
- * <p>The name of the Amazon EKS cluster associated with the Fargate profile.</p>
2414
+ * <p>The name of the Amazon EKS cluster associated with the Fargate
2415
+ * profile.</p>
2318
2416
  */
2319
2417
  clusterName: string | undefined;
2320
2418
  /**
@@ -2438,8 +2536,7 @@ export interface OidcIdentityProviderConfig {
2438
2536
  };
2439
2537
  /**
2440
2538
  * <p>The metadata to apply to the provider configuration to assist with categorization and
2441
- * organization. Each tag consists of a key and an optional value, both of which you
2442
- * defined.</p>
2539
+ * organization. Each tag consists of a key and an optional value. You define both.</p>
2443
2540
  */
2444
2541
  tags?: {
2445
2542
  [key: string]: string;
@@ -2665,7 +2762,7 @@ export interface ListClustersRequest {
2665
2762
  */
2666
2763
  nextToken?: string;
2667
2764
  /**
2668
- * <p>Indicates whether connected clusters are included in the returned list. Default value is 'ALL'.</p>
2765
+ * <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>
2669
2766
  */
2670
2767
  include?: string[];
2671
2768
  }
@@ -2728,7 +2825,8 @@ export declare namespace ListFargateProfilesRequest {
2728
2825
  }
2729
2826
  export interface ListFargateProfilesResponse {
2730
2827
  /**
2731
- * <p>A list of all of the Fargate profiles associated with the specified cluster.</p>
2828
+ * <p>A list of all of the Fargate profiles associated with the specified
2829
+ * cluster.</p>
2732
2830
  */
2733
2831
  fargateProfileNames?: string[];
2734
2832
  /**
@@ -2799,7 +2897,8 @@ export declare namespace ListIdentityProviderConfigsResponse {
2799
2897
  }
2800
2898
  export interface ListNodegroupsRequest {
2801
2899
  /**
2802
- * <p>The name of the Amazon EKS cluster that you would like to list node groups in.</p>
2900
+ * <p>The name of the Amazon EKS cluster that you would like to list node groups
2901
+ * in.</p>
2803
2902
  */
2804
2903
  clusterName: string | undefined;
2805
2904
  /**
@@ -2978,7 +3077,8 @@ export declare enum ConnectorConfigProvider {
2978
3077
  */
2979
3078
  export interface ConnectorConfigRequest {
2980
3079
  /**
2981
- * <p>The Amazon Resource Name (ARN) of the role that is authorized to request the connector configuration.</p>
3080
+ * <p>The Amazon Resource Name (ARN) of the role that is authorized to request the connector
3081
+ * configuration.</p>
2982
3082
  */
2983
3083
  roleArn: string | undefined;
2984
3084
  /**
@@ -2994,7 +3094,7 @@ export declare namespace ConnectorConfigRequest {
2994
3094
  }
2995
3095
  export interface RegisterClusterRequest {
2996
3096
  /**
2997
- * <p>Define a unique name for this cluster within your AWS account.</p>
3097
+ * <p>Define a unique name for this cluster for your Region.</p>
2998
3098
  */
2999
3099
  name: string | undefined;
3000
3100
  /**
@@ -3002,9 +3102,19 @@ export interface RegisterClusterRequest {
3002
3102
  */
3003
3103
  connectorConfig: ConnectorConfigRequest | undefined;
3004
3104
  /**
3005
- * <p>Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.</p>
3105
+ * <p>Unique, case-sensitive identifier that you provide to ensure the idempotency of the
3106
+ * request.</p>
3006
3107
  */
3007
3108
  clientRequestToken?: string;
3109
+ /**
3110
+ * <p>The metadata that you apply to the cluster to assist with categorization and
3111
+ * organization. Each tag consists of a key and an optional value, both of which you
3112
+ * define. Cluster tags do not propagate to any other resources associated with the
3113
+ * cluster.</p>
3114
+ */
3115
+ tags?: {
3116
+ [key: string]: string;
3117
+ };
3008
3118
  }
3009
3119
  export declare namespace RegisterClusterRequest {
3010
3120
  /**
@@ -3024,6 +3134,20 @@ export declare namespace RegisterClusterResponse {
3024
3134
  */
3025
3135
  const filterSensitiveLog: (obj: RegisterClusterResponse) => any;
3026
3136
  }
3137
+ /**
3138
+ * <p>Required resources (such as Service Linked Roles) were created and are still propagating. Retry later.</p>
3139
+ */
3140
+ export interface ResourcePropagationDelayException extends __SmithyException, $MetadataBearer {
3141
+ name: "ResourcePropagationDelayException";
3142
+ $fault: "client";
3143
+ message?: string;
3144
+ }
3145
+ export declare namespace ResourcePropagationDelayException {
3146
+ /**
3147
+ * @internal
3148
+ */
3149
+ const filterSensitiveLog: (obj: ResourcePropagationDelayException) => any;
3150
+ }
3027
3151
  export interface TagResourceRequest {
3028
3152
  /**
3029
3153
  * <p>The Amazon Resource Name (ARN) of the resource to which to add tags. Currently, the supported resources
@@ -3139,19 +3263,21 @@ export interface UpdateClusterConfigRequest {
3139
3263
  */
3140
3264
  name: string | undefined;
3141
3265
  /**
3142
- * <p>An object representing the VPC configuration to use for an Amazon EKS cluster.</p>
3266
+ * <p>An object representing the VPC configuration to use for an Amazon EKS
3267
+ * cluster.</p>
3143
3268
  */
3144
3269
  resourcesVpcConfig?: VpcConfigRequest;
3145
3270
  /**
3146
3271
  * <p>Enable or disable exporting the Kubernetes control plane logs for your cluster to
3147
- * CloudWatch Logs. By default, cluster control plane logs aren't exported to CloudWatch Logs. For more
3148
- * 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
3272
+ * CloudWatch Logs. By default, cluster control plane logs aren't exported to
3273
+ * 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
3149
3274
  * <i>
3150
3275
  * <i>Amazon EKS User Guide</i>
3151
3276
  * </i>.</p>
3152
3277
  * <note>
3153
- * <p>CloudWatch Logs ingestion, archive storage, and data scanning rates apply to exported
3154
- * control plane logs. For more information, see <a href="http://aws.amazon.com/cloudwatch/pricing/">CloudWatch Pricing</a>.</p>
3278
+ * <p>CloudWatch Logs ingestion, archive storage, and data scanning rates apply to
3279
+ * exported control plane logs. For more information, see <a href="http://aws.amazon.com/cloudwatch/pricing/">CloudWatch
3280
+ * Pricing</a>.</p>
3155
3281
  * </note>
3156
3282
  */
3157
3283
  logging?: Logging;
@@ -3254,7 +3380,8 @@ export declare namespace UpdateTaintsPayload {
3254
3380
  }
3255
3381
  export interface UpdateNodegroupConfigRequest {
3256
3382
  /**
3257
- * <p>The name of the Amazon EKS cluster that the managed node group resides in.</p>
3383
+ * <p>The name of the Amazon EKS cluster that the managed node group resides
3384
+ * in.</p>
3258
3385
  */
3259
3386
  clusterName: string | undefined;
3260
3387
  /**
@@ -3305,8 +3432,8 @@ export declare namespace UpdateNodegroupConfigResponse {
3305
3432
  }
3306
3433
  export interface UpdateNodegroupVersionRequest {
3307
3434
  /**
3308
- * <p>The name of the Amazon EKS cluster that is associated with the managed node group to
3309
- * update.</p>
3435
+ * <p>The name of the Amazon EKS cluster that is associated with the managed node
3436
+ * group to update.</p>
3310
3437
  */
3311
3438
  clusterName: string | undefined;
3312
3439
  /**
@@ -3323,12 +3450,11 @@ export interface UpdateNodegroupVersionRequest {
3323
3450
  */
3324
3451
  version?: string;
3325
3452
  /**
3326
- * <p>The AMI version of the Amazon EKS optimized AMI to use for the update. By default, the
3327
- * latest available AMI version for the node group's Kubernetes version is used. For more
3328
- * 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
3329
- * <i>Amazon EKS User Guide</i>. If you specify <code>launchTemplate</code>, and your launch template uses a custom AMI, then don't specify
3330
- * <code>releaseVersion</code>, or the node group update will fail.
3331
- * 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>
3453
+ * <p>The AMI version of the Amazon EKS optimized AMI to use for the update. By
3454
+ * default, the latest available AMI version for the node group's Kubernetes version is
3455
+ * 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>.
3456
+ * If you specify <code>launchTemplate</code>, and your launch template uses a custom AMI, then don't specify <code>releaseVersion</code>,
3457
+ * 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>
3332
3458
  */
3333
3459
  releaseVersion?: string;
3334
3460
  /**