@aws-sdk/client-eks 3.687.0 → 3.691.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.
@@ -23,12 +23,12 @@ export interface AccessConfigResponse {
23
23
  * cluster admin access entry during cluster creation time.</p>
24
24
  * @public
25
25
  */
26
- bootstrapClusterCreatorAdminPermissions?: boolean;
26
+ bootstrapClusterCreatorAdminPermissions?: boolean | undefined;
27
27
  /**
28
28
  * <p>The current authentication mode of the cluster.</p>
29
29
  * @public
30
30
  */
31
- authenticationMode?: AuthenticationMode;
31
+ authenticationMode?: AuthenticationMode | undefined;
32
32
  }
33
33
  /**
34
34
  * <p>You don't have permissions to perform the requested operation. The <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_terms-and-concepts.html">IAM principal</a>
@@ -59,7 +59,7 @@ export interface AccessEntry {
59
59
  * <p>The name of your cluster.</p>
60
60
  * @public
61
61
  */
62
- clusterName?: string;
62
+ clusterName?: string | undefined;
63
63
  /**
64
64
  * <p>The ARN of the IAM principal for the access entry. If you ever delete
65
65
  * the IAM principal with this ARN, the access entry isn't automatically
@@ -74,46 +74,46 @@ export interface AccessEntry {
74
74
  * for an access entry, Amazon EKS stores it with the access entry.</p>
75
75
  * @public
76
76
  */
77
- principalArn?: string;
77
+ principalArn?: string | undefined;
78
78
  /**
79
79
  * <p>A <code>name</code> that you've specified in a Kubernetes <code>RoleBinding</code> or
80
80
  * <code>ClusterRoleBinding</code> object so that Kubernetes authorizes the
81
81
  * <code>principalARN</code> access to cluster objects.</p>
82
82
  * @public
83
83
  */
84
- kubernetesGroups?: string[];
84
+ kubernetesGroups?: string[] | undefined;
85
85
  /**
86
86
  * <p>The ARN of the access entry.</p>
87
87
  * @public
88
88
  */
89
- accessEntryArn?: string;
89
+ accessEntryArn?: string | undefined;
90
90
  /**
91
91
  * <p>The Unix epoch timestamp at object creation.</p>
92
92
  * @public
93
93
  */
94
- createdAt?: Date;
94
+ createdAt?: Date | undefined;
95
95
  /**
96
96
  * <p>The Unix epoch timestamp for the last modification to the object.</p>
97
97
  * @public
98
98
  */
99
- modifiedAt?: Date;
99
+ modifiedAt?: Date | undefined;
100
100
  /**
101
101
  * <p>Metadata that assists with categorization and organization.
102
102
  * Each tag consists of a key and an optional value. You define both. Tags don't
103
103
  * propagate to any other cluster or Amazon Web Services resources.</p>
104
104
  * @public
105
105
  */
106
- tags?: Record<string, string>;
106
+ tags?: Record<string, string> | undefined;
107
107
  /**
108
108
  * <p>The <code>name</code> of a user that can authenticate to your cluster.</p>
109
109
  * @public
110
110
  */
111
- username?: string;
111
+ username?: string | undefined;
112
112
  /**
113
113
  * <p>The type of the access entry.</p>
114
114
  * @public
115
115
  */
116
- type?: string;
116
+ type?: string | undefined;
117
117
  }
118
118
  /**
119
119
  * <p>An access policy includes permissions that allow Amazon EKS to authorize an
@@ -132,12 +132,12 @@ export interface AccessPolicy {
132
132
  * <p>The name of the access policy.</p>
133
133
  * @public
134
134
  */
135
- name?: string;
135
+ name?: string | undefined;
136
136
  /**
137
137
  * <p>The ARN of the access policy.</p>
138
138
  * @public
139
139
  */
140
- arn?: string;
140
+ arn?: string | undefined;
141
141
  }
142
142
  /**
143
143
  * @public
@@ -161,13 +161,13 @@ export interface AccessScope {
161
161
  * <p>The scope type of an access policy.</p>
162
162
  * @public
163
163
  */
164
- type?: AccessScopeType;
164
+ type?: AccessScopeType | undefined;
165
165
  /**
166
166
  * <p>A Kubernetes <code>namespace</code> that an access policy is scoped to. A value is required
167
167
  * if you specified <code>namespace</code> for <code>Type</code>.</p>
168
168
  * @public
169
169
  */
170
- namespaces?: string[];
170
+ namespaces?: string[] | undefined;
171
171
  }
172
172
  /**
173
173
  * @public
@@ -198,17 +198,17 @@ export interface AddonIssue {
198
198
  * <p>A code that describes the type of issue.</p>
199
199
  * @public
200
200
  */
201
- code?: AddonIssueCode;
201
+ code?: AddonIssueCode | undefined;
202
202
  /**
203
203
  * <p>A message that provides details about the issue and what might cause it.</p>
204
204
  * @public
205
205
  */
206
- message?: string;
206
+ message?: string | undefined;
207
207
  /**
208
208
  * <p>The resource IDs of the issue.</p>
209
209
  * @public
210
210
  */
211
- resourceIds?: string[];
211
+ resourceIds?: string[] | undefined;
212
212
  }
213
213
  /**
214
214
  * <p>The health of the add-on.</p>
@@ -219,7 +219,7 @@ export interface AddonHealth {
219
219
  * <p>An object representing the health issues for an add-on.</p>
220
220
  * @public
221
221
  */
222
- issues?: AddonIssue[];
222
+ issues?: AddonIssue[] | undefined;
223
223
  }
224
224
  /**
225
225
  * <p>Information about an Amazon EKS add-on from the Amazon Web Services Marketplace.</p>
@@ -230,12 +230,12 @@ export interface MarketplaceInformation {
230
230
  * <p>The product ID from the Amazon Web Services Marketplace.</p>
231
231
  * @public
232
232
  */
233
- productId?: string;
233
+ productId?: string | undefined;
234
234
  /**
235
235
  * <p>The product URL from the Amazon Web Services Marketplace.</p>
236
236
  * @public
237
237
  */
238
- productUrl?: string;
238
+ productUrl?: string | undefined;
239
239
  }
240
240
  /**
241
241
  * @public
@@ -265,81 +265,81 @@ export interface Addon {
265
265
  * <p>The name of the add-on.</p>
266
266
  * @public
267
267
  */
268
- addonName?: string;
268
+ addonName?: string | undefined;
269
269
  /**
270
270
  * <p>The name of your cluster.</p>
271
271
  * @public
272
272
  */
273
- clusterName?: string;
273
+ clusterName?: string | undefined;
274
274
  /**
275
275
  * <p>The status of the add-on.</p>
276
276
  * @public
277
277
  */
278
- status?: AddonStatus;
278
+ status?: AddonStatus | undefined;
279
279
  /**
280
280
  * <p>The version of the add-on.</p>
281
281
  * @public
282
282
  */
283
- addonVersion?: string;
283
+ addonVersion?: string | undefined;
284
284
  /**
285
285
  * <p>An object that represents the health of the add-on.</p>
286
286
  * @public
287
287
  */
288
- health?: AddonHealth;
288
+ health?: AddonHealth | undefined;
289
289
  /**
290
290
  * <p>The Amazon Resource Name (ARN) of the add-on.</p>
291
291
  * @public
292
292
  */
293
- addonArn?: string;
293
+ addonArn?: string | undefined;
294
294
  /**
295
295
  * <p>The Unix epoch timestamp at object creation.</p>
296
296
  * @public
297
297
  */
298
- createdAt?: Date;
298
+ createdAt?: Date | undefined;
299
299
  /**
300
300
  * <p>The Unix epoch timestamp for the last modification to the object.</p>
301
301
  * @public
302
302
  */
303
- modifiedAt?: Date;
303
+ modifiedAt?: Date | undefined;
304
304
  /**
305
305
  * <p>The Amazon Resource Name (ARN) of the IAM role that's bound to the Kubernetes
306
306
  * <code>ServiceAccount</code> object that the add-on uses.</p>
307
307
  * @public
308
308
  */
309
- serviceAccountRoleArn?: string;
309
+ serviceAccountRoleArn?: string | undefined;
310
310
  /**
311
311
  * <p>Metadata that assists with categorization and organization.
312
312
  * Each tag consists of a key and an optional value. You define both. Tags don't
313
313
  * propagate to any other cluster or Amazon Web Services resources.</p>
314
314
  * @public
315
315
  */
316
- tags?: Record<string, string>;
316
+ tags?: Record<string, string> | undefined;
317
317
  /**
318
318
  * <p>The publisher of the add-on.</p>
319
319
  * @public
320
320
  */
321
- publisher?: string;
321
+ publisher?: string | undefined;
322
322
  /**
323
323
  * <p>The owner of the add-on.</p>
324
324
  * @public
325
325
  */
326
- owner?: string;
326
+ owner?: string | undefined;
327
327
  /**
328
328
  * <p>Information about an Amazon EKS add-on from the Amazon Web Services Marketplace.</p>
329
329
  * @public
330
330
  */
331
- marketplaceInformation?: MarketplaceInformation;
331
+ marketplaceInformation?: MarketplaceInformation | undefined;
332
332
  /**
333
333
  * <p>The configuration values that you provided.</p>
334
334
  * @public
335
335
  */
336
- configurationValues?: string;
336
+ configurationValues?: string | undefined;
337
337
  /**
338
338
  * <p>An array of Pod Identity Assocations owned by the Addon. Each EKS Pod Identity association maps a role to a service account in a namespace in the cluster.</p>
339
339
  * <p>For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/add-ons-iam.html">Attach an IAM Role to an Amazon EKS add-on using Pod Identity</a> in the EKS User Guide.</p>
340
340
  * @public
341
341
  */
342
- podIdentityAssociations?: string[];
342
+ podIdentityAssociations?: string[] | undefined;
343
343
  }
344
344
  /**
345
345
  * <p>Compatibility information.</p>
@@ -350,17 +350,17 @@ export interface Compatibility {
350
350
  * <p>The supported Kubernetes version of the cluster.</p>
351
351
  * @public
352
352
  */
353
- clusterVersion?: string;
353
+ clusterVersion?: string | undefined;
354
354
  /**
355
355
  * <p>The supported compute platform.</p>
356
356
  * @public
357
357
  */
358
- platformVersions?: string[];
358
+ platformVersions?: string[] | undefined;
359
359
  /**
360
360
  * <p>The supported default version.</p>
361
361
  * @public
362
362
  */
363
- defaultVersion?: boolean;
363
+ defaultVersion?: boolean | undefined;
364
364
  }
365
365
  /**
366
366
  * <p>Information about an add-on version.</p>
@@ -371,27 +371,27 @@ export interface AddonVersionInfo {
371
371
  * <p>The version of the add-on.</p>
372
372
  * @public
373
373
  */
374
- addonVersion?: string;
374
+ addonVersion?: string | undefined;
375
375
  /**
376
376
  * <p>The architectures that the version supports.</p>
377
377
  * @public
378
378
  */
379
- architecture?: string[];
379
+ architecture?: string[] | undefined;
380
380
  /**
381
381
  * <p>An object representing the compatibilities of a version.</p>
382
382
  * @public
383
383
  */
384
- compatibilities?: Compatibility[];
384
+ compatibilities?: Compatibility[] | undefined;
385
385
  /**
386
386
  * <p>Whether the add-on requires configuration.</p>
387
387
  * @public
388
388
  */
389
- requiresConfiguration?: boolean;
389
+ requiresConfiguration?: boolean | undefined;
390
390
  /**
391
391
  * <p>Indicates if the Addon requires IAM Permissions to operate, such as networking permissions.</p>
392
392
  * @public
393
393
  */
394
- requiresIamPermissions?: boolean;
394
+ requiresIamPermissions?: boolean | undefined;
395
395
  }
396
396
  /**
397
397
  * <p>Information about an add-on.</p>
@@ -402,33 +402,33 @@ export interface AddonInfo {
402
402
  * <p>The name of the add-on.</p>
403
403
  * @public
404
404
  */
405
- addonName?: string;
405
+ addonName?: string | undefined;
406
406
  /**
407
407
  * <p>The type of the add-on.</p>
408
408
  * @public
409
409
  */
410
- type?: string;
410
+ type?: string | undefined;
411
411
  /**
412
412
  * <p>An object representing information about available add-on versions and compatible
413
413
  * Kubernetes versions.</p>
414
414
  * @public
415
415
  */
416
- addonVersions?: AddonVersionInfo[];
416
+ addonVersions?: AddonVersionInfo[] | undefined;
417
417
  /**
418
418
  * <p>The publisher of the add-on.</p>
419
419
  * @public
420
420
  */
421
- publisher?: string;
421
+ publisher?: string | undefined;
422
422
  /**
423
423
  * <p>The owner of the add-on.</p>
424
424
  * @public
425
425
  */
426
- owner?: string;
426
+ owner?: string | undefined;
427
427
  /**
428
428
  * <p>Information about the add-on from the Amazon Web Services Marketplace.</p>
429
429
  * @public
430
430
  */
431
- marketplaceInformation?: MarketplaceInformation;
431
+ marketplaceInformation?: MarketplaceInformation | undefined;
432
432
  }
433
433
  /**
434
434
  * <p>A type of Pod Identity Association owned by an Amazon EKS Add-on.</p>
@@ -457,12 +457,12 @@ export interface AddonPodIdentityConfiguration {
457
457
  * <p>The Kubernetes Service Account name used by the addon.</p>
458
458
  * @public
459
459
  */
460
- serviceAccount?: string;
460
+ serviceAccount?: string | undefined;
461
461
  /**
462
462
  * <p>A suggested IAM Policy for the addon.</p>
463
463
  * @public
464
464
  */
465
- recommendedManagedPolicies?: string[];
465
+ recommendedManagedPolicies?: string[] | undefined;
466
466
  }
467
467
  /**
468
468
  * @public
@@ -527,23 +527,23 @@ export interface AssociatedAccessPolicy {
527
527
  * <p>The ARN of the <code>AccessPolicy</code>.</p>
528
528
  * @public
529
529
  */
530
- policyArn?: string;
530
+ policyArn?: string | undefined;
531
531
  /**
532
532
  * <p>The scope of the access policy.</p>
533
533
  * @public
534
534
  */
535
- accessScope?: AccessScope;
535
+ accessScope?: AccessScope | undefined;
536
536
  /**
537
537
  * <p>The date and time the <code>AccessPolicy</code> was associated with an
538
538
  * <code>AccessEntry</code>.</p>
539
539
  * @public
540
540
  */
541
- associatedAt?: Date;
541
+ associatedAt?: Date | undefined;
542
542
  /**
543
543
  * <p>The Unix epoch timestamp for the last modification to the object.</p>
544
544
  * @public
545
545
  */
546
- modifiedAt?: Date;
546
+ modifiedAt?: Date | undefined;
547
547
  }
548
548
  /**
549
549
  * @public
@@ -553,18 +553,18 @@ export interface AssociateAccessPolicyResponse {
553
553
  * <p>The name of your cluster.</p>
554
554
  * @public
555
555
  */
556
- clusterName?: string;
556
+ clusterName?: string | undefined;
557
557
  /**
558
558
  * <p>The ARN of the IAM principal for the <code>AccessEntry</code>.</p>
559
559
  * @public
560
560
  */
561
- principalArn?: string;
561
+ principalArn?: string | undefined;
562
562
  /**
563
563
  * <p>The <code>AccessPolicy</code> and scope associated to the
564
564
  * <code>AccessEntry</code>.</p>
565
565
  * @public
566
566
  */
567
- associatedAccessPolicy?: AssociatedAccessPolicy;
567
+ associatedAccessPolicy?: AssociatedAccessPolicy | undefined;
568
568
  }
569
569
  /**
570
570
  * <p>The specified parameter is invalid. Review the available parameters for the API
@@ -578,28 +578,28 @@ export declare class InvalidParameterException extends __BaseException {
578
578
  * <p>The Amazon EKS cluster associated with the exception.</p>
579
579
  * @public
580
580
  */
581
- clusterName?: string;
581
+ clusterName?: string | undefined;
582
582
  /**
583
583
  * <p>The Amazon EKS managed node group associated with the exception.</p>
584
584
  * @public
585
585
  */
586
- nodegroupName?: string;
586
+ nodegroupName?: string | undefined;
587
587
  /**
588
588
  * <p>The Fargate profile associated with the exception.</p>
589
589
  * @public
590
590
  */
591
- fargateProfileName?: string;
591
+ fargateProfileName?: string | undefined;
592
592
  /**
593
593
  * <p>The specified parameter for the add-on name is invalid. Review the available
594
594
  * parameters for the API request</p>
595
595
  * @public
596
596
  */
597
- addonName?: string;
597
+ addonName?: string | undefined;
598
598
  /**
599
599
  * <p>The Amazon EKS subscription ID with the exception.</p>
600
600
  * @public
601
601
  */
602
- subscriptionId?: string;
602
+ subscriptionId?: string | undefined;
603
603
  /**
604
604
  * @internal
605
605
  */
@@ -617,23 +617,23 @@ export declare class InvalidRequestException extends __BaseException {
617
617
  * <p>The Amazon EKS cluster associated with the exception.</p>
618
618
  * @public
619
619
  */
620
- clusterName?: string;
620
+ clusterName?: string | undefined;
621
621
  /**
622
622
  * <p>The Amazon EKS managed node group associated with the exception.</p>
623
623
  * @public
624
624
  */
625
- nodegroupName?: string;
625
+ nodegroupName?: string | undefined;
626
626
  /**
627
627
  * <p>The request is invalid given the state of the add-on name. Check the state of the
628
628
  * cluster and the associated operations.</p>
629
629
  * @public
630
630
  */
631
- addonName?: string;
631
+ addonName?: string | undefined;
632
632
  /**
633
633
  * <p>The Amazon EKS subscription ID with the exception.</p>
634
634
  * @public
635
635
  */
636
- subscriptionId?: string;
636
+ subscriptionId?: string | undefined;
637
637
  /**
638
638
  * @internal
639
639
  */
@@ -652,27 +652,27 @@ export declare class ResourceNotFoundException extends __BaseException {
652
652
  * <p>The Amazon EKS cluster associated with the exception.</p>
653
653
  * @public
654
654
  */
655
- clusterName?: string;
655
+ clusterName?: string | undefined;
656
656
  /**
657
657
  * <p>The Amazon EKS managed node group associated with the exception.</p>
658
658
  * @public
659
659
  */
660
- nodegroupName?: string;
660
+ nodegroupName?: string | undefined;
661
661
  /**
662
662
  * <p>The Fargate profile associated with the exception.</p>
663
663
  * @public
664
664
  */
665
- fargateProfileName?: string;
665
+ fargateProfileName?: string | undefined;
666
666
  /**
667
667
  * <p>The Amazon EKS add-on name associated with the exception.</p>
668
668
  * @public
669
669
  */
670
- addonName?: string;
670
+ addonName?: string | undefined;
671
671
  /**
672
672
  * <p>The Amazon EKS subscription ID with the exception.</p>
673
673
  * @public
674
674
  */
675
- subscriptionId?: string;
675
+ subscriptionId?: string | undefined;
676
676
  /**
677
677
  * @internal
678
678
  */
@@ -689,22 +689,22 @@ export declare class ServerException extends __BaseException {
689
689
  * <p>The Amazon EKS cluster associated with the exception.</p>
690
690
  * @public
691
691
  */
692
- clusterName?: string;
692
+ clusterName?: string | undefined;
693
693
  /**
694
694
  * <p>The Amazon EKS managed node group associated with the exception.</p>
695
695
  * @public
696
696
  */
697
- nodegroupName?: string;
697
+ nodegroupName?: string | undefined;
698
698
  /**
699
699
  * <p>The Amazon EKS add-on name associated with the exception.</p>
700
700
  * @public
701
701
  */
702
- addonName?: string;
702
+ addonName?: string | undefined;
703
703
  /**
704
704
  * <p>The Amazon EKS subscription ID with the exception.</p>
705
705
  * @public
706
706
  */
707
- subscriptionId?: string;
707
+ subscriptionId?: string | undefined;
708
708
  /**
709
709
  * @internal
710
710
  */
@@ -725,7 +725,7 @@ export interface Provider {
725
725
  * <i>Key Management Service Developer Guide</i>.</p>
726
726
  * @public
727
727
  */
728
- keyArn?: string;
728
+ keyArn?: string | undefined;
729
729
  }
730
730
  /**
731
731
  * <p>The encryption configuration for the cluster.</p>
@@ -737,13 +737,13 @@ export interface EncryptionConfig {
737
737
  * <code>secrets</code>.</p>
738
738
  * @public
739
739
  */
740
- resources?: string[];
740
+ resources?: string[] | undefined;
741
741
  /**
742
742
  * <p>Key Management Service (KMS) key. Either the ARN or the alias can be
743
743
  * used.</p>
744
744
  * @public
745
745
  */
746
- provider?: Provider;
746
+ provider?: Provider | undefined;
747
747
  }
748
748
  /**
749
749
  * @public
@@ -764,7 +764,7 @@ export interface AssociateEncryptionConfigRequest {
764
764
  * the idempotency of the request.</p>
765
765
  * @public
766
766
  */
767
- clientRequestToken?: string;
767
+ clientRequestToken?: string | undefined;
768
768
  }
769
769
  /**
770
770
  * @public
@@ -840,17 +840,17 @@ export interface ErrorDetail {
840
840
  * </ul>
841
841
  * @public
842
842
  */
843
- errorCode?: ErrorCode;
843
+ errorCode?: ErrorCode | undefined;
844
844
  /**
845
845
  * <p>A more complete description of the error.</p>
846
846
  * @public
847
847
  */
848
- errorMessage?: string;
848
+ errorMessage?: string | undefined;
849
849
  /**
850
850
  * <p>An optional field that contains the resource IDs associated with the error.</p>
851
851
  * @public
852
852
  */
853
- resourceIds?: string[];
853
+ resourceIds?: string[] | undefined;
854
854
  }
855
855
  /**
856
856
  * @public
@@ -901,12 +901,12 @@ export interface UpdateParam {
901
901
  * <p>The keys associated with an update request.</p>
902
902
  * @public
903
903
  */
904
- type?: UpdateParamType;
904
+ type?: UpdateParamType | undefined;
905
905
  /**
906
906
  * <p>The value of the keys submitted as part of an update request.</p>
907
907
  * @public
908
908
  */
909
- value?: string;
909
+ value?: string | undefined;
910
910
  }
911
911
  /**
912
912
  * @public
@@ -953,32 +953,32 @@ export interface Update {
953
953
  * <p>A UUID that is used to track the update.</p>
954
954
  * @public
955
955
  */
956
- id?: string;
956
+ id?: string | undefined;
957
957
  /**
958
958
  * <p>The current status of the update.</p>
959
959
  * @public
960
960
  */
961
- status?: UpdateStatus;
961
+ status?: UpdateStatus | undefined;
962
962
  /**
963
963
  * <p>The type of the update.</p>
964
964
  * @public
965
965
  */
966
- type?: UpdateType;
966
+ type?: UpdateType | undefined;
967
967
  /**
968
968
  * <p>A key-value map that contains the parameters associated with the update.</p>
969
969
  * @public
970
970
  */
971
- params?: UpdateParam[];
971
+ params?: UpdateParam[] | undefined;
972
972
  /**
973
973
  * <p>The Unix epoch timestamp at object creation.</p>
974
974
  * @public
975
975
  */
976
- createdAt?: Date;
976
+ createdAt?: Date | undefined;
977
977
  /**
978
978
  * <p>Any errors associated with a <code>Failed</code> update.</p>
979
979
  * @public
980
980
  */
981
- errors?: ErrorDetail[];
981
+ errors?: ErrorDetail[] | undefined;
982
982
  }
983
983
  /**
984
984
  * @public
@@ -988,7 +988,7 @@ export interface AssociateEncryptionConfigResponse {
988
988
  * <p>An object representing an asynchronous update.</p>
989
989
  * @public
990
990
  */
991
- update?: Update;
991
+ update?: Update | undefined;
992
992
  }
993
993
  /**
994
994
  * <p>These errors are usually caused by a client action. Actions can include using an
@@ -1003,22 +1003,22 @@ export declare class ClientException extends __BaseException {
1003
1003
  * <p>The Amazon EKS cluster associated with the exception.</p>
1004
1004
  * @public
1005
1005
  */
1006
- clusterName?: string;
1006
+ clusterName?: string | undefined;
1007
1007
  /**
1008
1008
  * <p>The Amazon EKS managed node group associated with the exception.</p>
1009
1009
  * @public
1010
1010
  */
1011
- nodegroupName?: string;
1011
+ nodegroupName?: string | undefined;
1012
1012
  /**
1013
1013
  * <p>The Amazon EKS add-on name associated with the exception.</p>
1014
1014
  * @public
1015
1015
  */
1016
- addonName?: string;
1016
+ addonName?: string | undefined;
1017
1017
  /**
1018
1018
  * <p>The Amazon EKS subscription ID with the exception.</p>
1019
1019
  * @public
1020
1020
  */
1021
- subscriptionId?: string;
1021
+ subscriptionId?: string | undefined;
1022
1022
  /**
1023
1023
  * @internal
1024
1024
  */
@@ -1035,17 +1035,17 @@ export declare class ResourceInUseException extends __BaseException {
1035
1035
  * <p>The Amazon EKS cluster associated with the exception.</p>
1036
1036
  * @public
1037
1037
  */
1038
- clusterName?: string;
1038
+ clusterName?: string | undefined;
1039
1039
  /**
1040
1040
  * <p>The Amazon EKS managed node group associated with the exception.</p>
1041
1041
  * @public
1042
1042
  */
1043
- nodegroupName?: string;
1043
+ nodegroupName?: string | undefined;
1044
1044
  /**
1045
1045
  * <p>The specified add-on name is in use.</p>
1046
1046
  * @public
1047
1047
  */
1048
- addonName?: string;
1048
+ addonName?: string | undefined;
1049
1049
  /**
1050
1050
  * @internal
1051
1051
  */
@@ -1090,7 +1090,7 @@ export interface OidcIdentityProviderConfigRequest {
1090
1090
  * issuer URL to prevent naming clashes with other plug-ins.</p>
1091
1091
  * @public
1092
1092
  */
1093
- usernameClaim?: string;
1093
+ usernameClaim?: string | undefined;
1094
1094
  /**
1095
1095
  * <p>The prefix that is prepended to username claims to prevent clashes with existing
1096
1096
  * names. If you do not provide this field, and <code>username</code> is a value other than
@@ -1098,12 +1098,12 @@ export interface OidcIdentityProviderConfigRequest {
1098
1098
  * value <code>-</code> to disable all prefixing.</p>
1099
1099
  * @public
1100
1100
  */
1101
- usernamePrefix?: string;
1101
+ usernamePrefix?: string | undefined;
1102
1102
  /**
1103
1103
  * <p>The JWT claim that the provider uses to return your groups.</p>
1104
1104
  * @public
1105
1105
  */
1106
- groupsClaim?: string;
1106
+ groupsClaim?: string | undefined;
1107
1107
  /**
1108
1108
  * <p>The prefix that is prepended to group claims to prevent clashes with existing names
1109
1109
  * (such as <code>system:</code> groups). For example, the value<code> oidc:</code> will
@@ -1111,7 +1111,7 @@ export interface OidcIdentityProviderConfigRequest {
1111
1111
  * <code>oidc:infra</code>.</p>
1112
1112
  * @public
1113
1113
  */
1114
- groupsPrefix?: string;
1114
+ groupsPrefix?: string | undefined;
1115
1115
  /**
1116
1116
  * <p>The key value pairs that describe required claims in the identity token. If set, each
1117
1117
  * claim is verified to be present in the token with a matching value. For the maximum
@@ -1119,7 +1119,7 @@ export interface OidcIdentityProviderConfigRequest {
1119
1119
  * quotas</a> in the <i>Amazon EKS User Guide</i>.</p>
1120
1120
  * @public
1121
1121
  */
1122
- requiredClaims?: Record<string, string>;
1122
+ requiredClaims?: Record<string, string> | undefined;
1123
1123
  }
1124
1124
  /**
1125
1125
  * @public
@@ -1141,13 +1141,13 @@ export interface AssociateIdentityProviderConfigRequest {
1141
1141
  * propagate to any other cluster or Amazon Web Services resources.</p>
1142
1142
  * @public
1143
1143
  */
1144
- tags?: Record<string, string>;
1144
+ tags?: Record<string, string> | undefined;
1145
1145
  /**
1146
1146
  * <p>A unique, case-sensitive identifier that you provide to ensure
1147
1147
  * the idempotency of the request.</p>
1148
1148
  * @public
1149
1149
  */
1150
- clientRequestToken?: string;
1150
+ clientRequestToken?: string | undefined;
1151
1151
  }
1152
1152
  /**
1153
1153
  * @public
@@ -1157,12 +1157,12 @@ export interface AssociateIdentityProviderConfigResponse {
1157
1157
  * <p>An object representing an asynchronous update.</p>
1158
1158
  * @public
1159
1159
  */
1160
- update?: Update;
1160
+ update?: Update | undefined;
1161
1161
  /**
1162
1162
  * <p>The tags for the resource.</p>
1163
1163
  * @public
1164
1164
  */
1165
- tags?: Record<string, string>;
1165
+ tags?: Record<string, string> | undefined;
1166
1166
  }
1167
1167
  /**
1168
1168
  * <p>An Auto Scaling group that is associated with an Amazon EKS managed node
@@ -1175,7 +1175,7 @@ export interface AutoScalingGroup {
1175
1175
  * node group.</p>
1176
1176
  * @public
1177
1177
  */
1178
- name?: string;
1178
+ name?: string | undefined;
1179
1179
  }
1180
1180
  /**
1181
1181
  * @public
@@ -1226,20 +1226,20 @@ export interface CreateAccessEntryRequest {
1226
1226
  * objects that the group names are bound to.</p>
1227
1227
  * @public
1228
1228
  */
1229
- kubernetesGroups?: string[];
1229
+ kubernetesGroups?: string[] | undefined;
1230
1230
  /**
1231
1231
  * <p>Metadata that assists with categorization and organization.
1232
1232
  * Each tag consists of a key and an optional value. You define both. Tags don't
1233
1233
  * propagate to any other cluster or Amazon Web Services resources.</p>
1234
1234
  * @public
1235
1235
  */
1236
- tags?: Record<string, string>;
1236
+ tags?: Record<string, string> | undefined;
1237
1237
  /**
1238
1238
  * <p>A unique, case-sensitive identifier that you provide to ensure
1239
1239
  * the idempotency of the request.</p>
1240
1240
  * @public
1241
1241
  */
1242
- clientRequestToken?: string;
1242
+ clientRequestToken?: string | undefined;
1243
1243
  /**
1244
1244
  * <p>The username to authenticate to Kubernetes with. We recommend not specifying a username and
1245
1245
  * letting Amazon EKS specify it for you. For more information about the value
@@ -1248,7 +1248,7 @@ export interface CreateAccessEntryRequest {
1248
1248
  * access entries</a> in the <i>Amazon EKS User Guide</i>.</p>
1249
1249
  * @public
1250
1250
  */
1251
- username?: string;
1251
+ username?: string | undefined;
1252
1252
  /**
1253
1253
  * <p>The type of the new access entry. Valid values are <code>Standard</code>,
1254
1254
  * <code>FARGATE_LINUX</code>, <code>EC2_LINUX</code>, and
@@ -1267,7 +1267,7 @@ export interface CreateAccessEntryRequest {
1267
1267
  * <code>AccessPolicy</code> to the access entry.</p>
1268
1268
  * @public
1269
1269
  */
1270
- type?: string;
1270
+ type?: string | undefined;
1271
1271
  }
1272
1272
  /**
1273
1273
  * @public
@@ -1281,7 +1281,7 @@ export interface CreateAccessEntryResponse {
1281
1281
  * entries</a> in the <i>Amazon EKS User Guide</i>.</p>
1282
1282
  * @public
1283
1283
  */
1284
- accessEntry?: AccessEntry;
1284
+ accessEntry?: AccessEntry | undefined;
1285
1285
  }
1286
1286
  /**
1287
1287
  * <p>You have encountered a service limit on the specified resource.</p>
@@ -1294,17 +1294,17 @@ export declare class ResourceLimitExceededException extends __BaseException {
1294
1294
  * <p>The Amazon EKS cluster associated with the exception.</p>
1295
1295
  * @public
1296
1296
  */
1297
- clusterName?: string;
1297
+ clusterName?: string | undefined;
1298
1298
  /**
1299
1299
  * <p>The Amazon EKS managed node group associated with the exception.</p>
1300
1300
  * @public
1301
1301
  */
1302
- nodegroupName?: string;
1302
+ nodegroupName?: string | undefined;
1303
1303
  /**
1304
1304
  * <p>The Amazon EKS subscription ID with the exception.</p>
1305
1305
  * @public
1306
1306
  */
1307
- subscriptionId?: string;
1307
+ subscriptionId?: string | undefined;
1308
1308
  /**
1309
1309
  * @internal
1310
1310
  */
@@ -1344,7 +1344,7 @@ export interface CreateAddonRequest {
1344
1344
  * </a>.</p>
1345
1345
  * @public
1346
1346
  */
1347
- addonVersion?: string;
1347
+ addonVersion?: string | undefined;
1348
1348
  /**
1349
1349
  * <p>The Amazon Resource Name (ARN) of an existing IAM role to bind to the add-on's service account. The role must be assigned the IAM permissions required by the add-on. If you don't specify an existing IAM role, then the add-on uses the
1350
1350
  * permissions assigned to the node IAM role. For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/create-node-role.html">Amazon EKS node IAM role</a> in the <i>Amazon EKS User Guide</i>.</p>
@@ -1356,7 +1356,7 @@ export interface CreateAddonRequest {
1356
1356
  * </note>
1357
1357
  * @public
1358
1358
  */
1359
- serviceAccountRoleArn?: string;
1359
+ serviceAccountRoleArn?: string | undefined;
1360
1360
  /**
1361
1361
  * <p>How to resolve field value conflicts for an Amazon EKS add-on. Conflicts are
1362
1362
  * handled based on the value you choose:</p>
@@ -1388,33 +1388,33 @@ export interface CreateAddonRequest {
1388
1388
  * to default values, regardless of the option that you specify.</p>
1389
1389
  * @public
1390
1390
  */
1391
- resolveConflicts?: ResolveConflicts;
1391
+ resolveConflicts?: ResolveConflicts | undefined;
1392
1392
  /**
1393
1393
  * <p>A unique, case-sensitive identifier that you provide to ensure
1394
1394
  * the idempotency of the request.</p>
1395
1395
  * @public
1396
1396
  */
1397
- clientRequestToken?: string;
1397
+ clientRequestToken?: string | undefined;
1398
1398
  /**
1399
1399
  * <p>Metadata that assists with categorization and organization.
1400
1400
  * Each tag consists of a key and an optional value. You define both. Tags don't
1401
1401
  * propagate to any other cluster or Amazon Web Services resources.</p>
1402
1402
  * @public
1403
1403
  */
1404
- tags?: Record<string, string>;
1404
+ tags?: Record<string, string> | undefined;
1405
1405
  /**
1406
1406
  * <p>The set of configuration values for the add-on that's created. The values that you
1407
1407
  * provide are validated against the schema returned by
1408
1408
  * <code>DescribeAddonConfiguration</code>.</p>
1409
1409
  * @public
1410
1410
  */
1411
- configurationValues?: string;
1411
+ configurationValues?: string | undefined;
1412
1412
  /**
1413
1413
  * <p>An array of Pod Identity Assocations to be created. Each EKS Pod Identity association maps a Kubernetes service account to an IAM Role.</p>
1414
1414
  * <p>For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/add-ons-iam.html">Attach an IAM Role to an Amazon EKS add-on using Pod Identity</a> in the EKS User Guide.</p>
1415
1415
  * @public
1416
1416
  */
1417
- podIdentityAssociations?: AddonPodIdentityAssociations[];
1417
+ podIdentityAssociations?: AddonPodIdentityAssociations[] | undefined;
1418
1418
  }
1419
1419
  /**
1420
1420
  * @public
@@ -1425,7 +1425,7 @@ export interface CreateAddonResponse {
1425
1425
  * the <i>Amazon EKS User Guide</i>.</p>
1426
1426
  * @public
1427
1427
  */
1428
- addon?: Addon;
1428
+ addon?: Addon | undefined;
1429
1429
  }
1430
1430
  /**
1431
1431
  * <p>The access configuration information for the cluster.</p>
@@ -1438,7 +1438,7 @@ export interface CreateAccessConfigRequest {
1438
1438
  * <code>true</code>.</p>
1439
1439
  * @public
1440
1440
  */
1441
- bootstrapClusterCreatorAdminPermissions?: boolean;
1441
+ bootstrapClusterCreatorAdminPermissions?: boolean | undefined;
1442
1442
  /**
1443
1443
  * <p>The desired authentication mode for the cluster. If you create a cluster by using the
1444
1444
  * EKS API, Amazon Web Services SDKs, or CloudFormation, the default is <code>CONFIG_MAP</code>. If you create
@@ -1446,7 +1446,7 @@ export interface CreateAccessConfigRequest {
1446
1446
  * <code>API_AND_CONFIG_MAP</code>.</p>
1447
1447
  * @public
1448
1448
  */
1449
- authenticationMode?: AuthenticationMode;
1449
+ authenticationMode?: AuthenticationMode | undefined;
1450
1450
  }
1451
1451
  /**
1452
1452
  * @public
@@ -1491,7 +1491,7 @@ export interface KubernetesNetworkConfigRequest {
1491
1491
  * </important>
1492
1492
  * @public
1493
1493
  */
1494
- serviceIpv4Cidr?: string;
1494
+ serviceIpv4Cidr?: string | undefined;
1495
1495
  /**
1496
1496
  * <p>Specify which IP family is used to assign Kubernetes pod and service IP addresses. If you
1497
1497
  * don't specify a value, <code>ipv4</code> is used by default. You can only specify an IP
@@ -1510,7 +1510,7 @@ export interface KubernetesNetworkConfigRequest {
1510
1510
  * Pod addresses are assigned from the subnet's <code>IPv6</code> CIDR.</p>
1511
1511
  * @public
1512
1512
  */
1513
- ipFamily?: IpFamily;
1513
+ ipFamily?: IpFamily | undefined;
1514
1514
  }
1515
1515
  /**
1516
1516
  * @public
@@ -1537,13 +1537,13 @@ export interface LogSetup {
1537
1537
  * <p>The available cluster control plane log types.</p>
1538
1538
  * @public
1539
1539
  */
1540
- types?: LogType[];
1540
+ types?: LogType[] | undefined;
1541
1541
  /**
1542
1542
  * <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
1543
1543
  * plane logs. Each individual log type can be enabled or disabled independently.</p>
1544
1544
  * @public
1545
1545
  */
1546
- enabled?: boolean;
1546
+ enabled?: boolean | undefined;
1547
1547
  }
1548
1548
  /**
1549
1549
  * <p>An object representing the logging configuration for resources in your cluster.</p>
@@ -1554,7 +1554,7 @@ export interface Logging {
1554
1554
  * <p>The cluster control plane logging configuration for your cluster.</p>
1555
1555
  * @public
1556
1556
  */
1557
- clusterLogging?: LogSetup[];
1557
+ clusterLogging?: LogSetup[] | undefined;
1558
1558
  }
1559
1559
  /**
1560
1560
  * <p>The placement configuration for all the control plane instances of your local Amazon EKS cluster on an Amazon Web Services Outpost. For more information, see
@@ -1568,7 +1568,7 @@ export interface ControlPlanePlacementRequest {
1568
1568
  * can't be changed after cluster creation. </p>
1569
1569
  * @public
1570
1570
  */
1571
- groupName?: string;
1571
+ groupName?: string | undefined;
1572
1572
  }
1573
1573
  /**
1574
1574
  * <p>The configuration of your local Amazon EKS cluster on an Amazon Web Services
@@ -1601,7 +1601,7 @@ export interface OutpostConfigRequest {
1601
1601
  * information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/eks-outposts-capacity-considerations.html">Capacity considerations</a> in the <i>Amazon EKS User Guide</i>.</p>
1602
1602
  * @public
1603
1603
  */
1604
- controlPlanePlacement?: ControlPlanePlacementRequest;
1604
+ controlPlanePlacement?: ControlPlanePlacementRequest | undefined;
1605
1605
  }
1606
1606
  /**
1607
1607
  * <p>An object representing the VPC configuration to use for an Amazon EKS
@@ -1615,7 +1615,7 @@ export interface VpcConfigRequest {
1615
1615
  * your nodes and the Kubernetes control plane.</p>
1616
1616
  * @public
1617
1617
  */
1618
- subnetIds?: string[];
1618
+ subnetIds?: string[] | undefined;
1619
1619
  /**
1620
1620
  * <p>Specify one or more security groups for the cross-account elastic network interfaces
1621
1621
  * that Amazon EKS creates to use that allow communication between your nodes and
@@ -1627,7 +1627,7 @@ export interface VpcConfigRequest {
1627
1627
  * </i>.</p>
1628
1628
  * @public
1629
1629
  */
1630
- securityGroupIds?: string[];
1630
+ securityGroupIds?: string[] | undefined;
1631
1631
  /**
1632
1632
  * <p>Set this value to <code>false</code> to disable public access to your cluster's Kubernetes
1633
1633
  * API server endpoint. If you disable public access, your cluster's Kubernetes API server can
@@ -1639,7 +1639,7 @@ export interface VpcConfigRequest {
1639
1639
  * </i>.</p>
1640
1640
  * @public
1641
1641
  */
1642
- endpointPublicAccess?: boolean;
1642
+ endpointPublicAccess?: boolean | undefined;
1643
1643
  /**
1644
1644
  * <p>Set this value to <code>true</code> to enable private access for your cluster's Kubernetes
1645
1645
  * API server endpoint. If you enable private access, Kubernetes API requests from within your
@@ -1654,7 +1654,7 @@ export interface VpcConfigRequest {
1654
1654
  * </i>.</p>
1655
1655
  * @public
1656
1656
  */
1657
- endpointPrivateAccess?: boolean;
1657
+ endpointPrivateAccess?: boolean | undefined;
1658
1658
  /**
1659
1659
  * <p>The CIDR blocks that are allowed access to your cluster's public Kubernetes API server
1660
1660
  * endpoint. Communication to the endpoint from addresses outside of the CIDR blocks that
@@ -1667,7 +1667,7 @@ export interface VpcConfigRequest {
1667
1667
  * </i>.</p>
1668
1668
  * @public
1669
1669
  */
1670
- publicAccessCidrs?: string[];
1670
+ publicAccessCidrs?: string[] | undefined;
1671
1671
  }
1672
1672
  /**
1673
1673
  * @public
@@ -1696,7 +1696,7 @@ export interface UpgradePolicyRequest {
1696
1696
  * </p>
1697
1697
  * @public
1698
1698
  */
1699
- supportType?: SupportType;
1699
+ supportType?: SupportType | undefined;
1700
1700
  }
1701
1701
  /**
1702
1702
  * <p>The configuration for zonal shift for the cluster.</p>
@@ -1707,7 +1707,7 @@ export interface ZonalShiftConfigRequest {
1707
1707
  * <p>If zonal shift is enabled, Amazon Web Services configures zonal autoshift for the cluster.</p>
1708
1708
  * @public
1709
1709
  */
1710
- enabled?: boolean;
1710
+ enabled?: boolean | undefined;
1711
1711
  }
1712
1712
  /**
1713
1713
  * @public
@@ -1729,7 +1729,7 @@ export interface CreateClusterRequest {
1729
1729
  * </note>
1730
1730
  * @public
1731
1731
  */
1732
- version?: string;
1732
+ version?: string | undefined;
1733
1733
  /**
1734
1734
  * <p>The Amazon Resource Name (ARN) of the IAM role that provides permissions for the Kubernetes
1735
1735
  * control plane to make calls to Amazon Web Services API operations on your behalf. For
@@ -1754,7 +1754,7 @@ export interface CreateClusterRequest {
1754
1754
  * <p>The Kubernetes network configuration for the cluster.</p>
1755
1755
  * @public
1756
1756
  */
1757
- kubernetesNetworkConfig?: KubernetesNetworkConfigRequest;
1757
+ kubernetesNetworkConfig?: KubernetesNetworkConfigRequest | undefined;
1758
1758
  /**
1759
1759
  * <p>Enable or disable exporting the Kubernetes control plane logs for your cluster to CloudWatch Logs. By default, cluster control plane logs aren't exported to 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
1760
1760
  * <i>
@@ -1767,25 +1767,25 @@ export interface CreateClusterRequest {
1767
1767
  * </note>
1768
1768
  * @public
1769
1769
  */
1770
- logging?: Logging;
1770
+ logging?: Logging | undefined;
1771
1771
  /**
1772
1772
  * <p>A unique, case-sensitive identifier that you provide to ensure
1773
1773
  * the idempotency of the request.</p>
1774
1774
  * @public
1775
1775
  */
1776
- clientRequestToken?: string;
1776
+ clientRequestToken?: string | undefined;
1777
1777
  /**
1778
1778
  * <p>Metadata that assists with categorization and organization.
1779
1779
  * Each tag consists of a key and an optional value. You define both. Tags don't
1780
1780
  * propagate to any other cluster or Amazon Web Services resources.</p>
1781
1781
  * @public
1782
1782
  */
1783
- tags?: Record<string, string>;
1783
+ tags?: Record<string, string> | undefined;
1784
1784
  /**
1785
1785
  * <p>The encryption configuration for the cluster.</p>
1786
1786
  * @public
1787
1787
  */
1788
- encryptionConfig?: EncryptionConfig[];
1788
+ encryptionConfig?: EncryptionConfig[] | undefined;
1789
1789
  /**
1790
1790
  * <p>An object representing the configuration of your local Amazon EKS cluster on
1791
1791
  * an Amazon Web Services Outpost. Before creating a local cluster on an Outpost, review
@@ -1795,24 +1795,24 @@ export interface CreateClusterRequest {
1795
1795
  * on the Amazon Web Services cloud.</p>
1796
1796
  * @public
1797
1797
  */
1798
- outpostConfig?: OutpostConfigRequest;
1798
+ outpostConfig?: OutpostConfigRequest | undefined;
1799
1799
  /**
1800
1800
  * <p>The access configuration for the cluster.</p>
1801
1801
  * @public
1802
1802
  */
1803
- accessConfig?: CreateAccessConfigRequest;
1803
+ accessConfig?: CreateAccessConfigRequest | undefined;
1804
1804
  /**
1805
1805
  * <p>If you set this value to <code>False</code> when creating a cluster, the default networking add-ons will not be installed.</p>
1806
1806
  * <p>The default networking addons include vpc-cni, coredns, and kube-proxy.</p>
1807
1807
  * <p>Use this option when you plan to install third-party alternative add-ons or self-manage the default networking add-ons.</p>
1808
1808
  * @public
1809
1809
  */
1810
- bootstrapSelfManagedAddons?: boolean;
1810
+ bootstrapSelfManagedAddons?: boolean | undefined;
1811
1811
  /**
1812
1812
  * <p>New clusters, by default, have extended support enabled. You can disable extended support when creating a cluster by setting this value to <code>STANDARD</code>.</p>
1813
1813
  * @public
1814
1814
  */
1815
- upgradePolicy?: UpgradePolicyRequest;
1815
+ upgradePolicy?: UpgradePolicyRequest | undefined;
1816
1816
  /**
1817
1817
  * <p>Enable or disable ARC zonal shift for the cluster. If zonal shift is enabled, Amazon Web Services
1818
1818
  * configures zonal autoshift for the cluster.</p>
@@ -1832,7 +1832,7 @@ export interface CreateClusterRequest {
1832
1832
  * </i>.</p>
1833
1833
  * @public
1834
1834
  */
1835
- zonalShiftConfig?: ZonalShiftConfigRequest;
1835
+ zonalShiftConfig?: ZonalShiftConfigRequest | undefined;
1836
1836
  }
1837
1837
  /**
1838
1838
  * <p>An object representing the <code>certificate-authority-data</code> for your
@@ -1846,7 +1846,7 @@ export interface Certificate {
1846
1846
  * <code>kubeconfig</code> file for your cluster.</p>
1847
1847
  * @public
1848
1848
  */
1849
- data?: string;
1849
+ data?: string | undefined;
1850
1850
  }
1851
1851
  /**
1852
1852
  * <p>The full description of your connected cluster.</p>
@@ -1857,29 +1857,29 @@ export interface ConnectorConfigResponse {
1857
1857
  * <p>A unique ID associated with the cluster for registration purposes.</p>
1858
1858
  * @public
1859
1859
  */
1860
- activationId?: string;
1860
+ activationId?: string | undefined;
1861
1861
  /**
1862
1862
  * <p>A unique code associated with the cluster for registration purposes.</p>
1863
1863
  * @public
1864
1864
  */
1865
- activationCode?: string;
1865
+ activationCode?: string | undefined;
1866
1866
  /**
1867
1867
  * <p>The expiration time of the connected cluster. The cluster's YAML file must be applied
1868
1868
  * through the native provider.</p>
1869
1869
  * @public
1870
1870
  */
1871
- activationExpiry?: Date;
1871
+ activationExpiry?: Date | undefined;
1872
1872
  /**
1873
1873
  * <p>The cluster's cloud service provider.</p>
1874
1874
  * @public
1875
1875
  */
1876
- provider?: string;
1876
+ provider?: string | undefined;
1877
1877
  /**
1878
1878
  * <p>The Amazon Resource Name (ARN) of the role to communicate with services from the connected Kubernetes
1879
1879
  * cluster.</p>
1880
1880
  * @public
1881
1881
  */
1882
- roleArn?: string;
1882
+ roleArn?: string | undefined;
1883
1883
  }
1884
1884
  /**
1885
1885
  * @public
@@ -1919,17 +1919,17 @@ export interface ClusterIssue {
1919
1919
  * <p>The error code of the issue.</p>
1920
1920
  * @public
1921
1921
  */
1922
- code?: ClusterIssueCode;
1922
+ code?: ClusterIssueCode | undefined;
1923
1923
  /**
1924
1924
  * <p>A description of the issue.</p>
1925
1925
  * @public
1926
1926
  */
1927
- message?: string;
1927
+ message?: string | undefined;
1928
1928
  /**
1929
1929
  * <p>The resource IDs that the issue relates to.</p>
1930
1930
  * @public
1931
1931
  */
1932
- resourceIds?: string[];
1932
+ resourceIds?: string[] | undefined;
1933
1933
  }
1934
1934
  /**
1935
1935
  * <p>An object representing the health of your Amazon EKS cluster.</p>
@@ -1940,7 +1940,7 @@ export interface ClusterHealth {
1940
1940
  * <p>An object representing the health issues of your Amazon EKS cluster.</p>
1941
1941
  * @public
1942
1942
  */
1943
- issues?: ClusterIssue[];
1943
+ issues?: ClusterIssue[] | undefined;
1944
1944
  }
1945
1945
  /**
1946
1946
  * <p>An object representing the <a href="https://openid.net/connect/">OpenID Connect</a>
@@ -1952,7 +1952,7 @@ export interface OIDC {
1952
1952
  * <p>The issuer URL for the OIDC identity provider.</p>
1953
1953
  * @public
1954
1954
  */
1955
- issuer?: string;
1955
+ issuer?: string | undefined;
1956
1956
  }
1957
1957
  /**
1958
1958
  * <p>An object representing an identity provider.</p>
@@ -1964,7 +1964,7 @@ export interface Identity {
1964
1964
  * identity provider information.</p>
1965
1965
  * @public
1966
1966
  */
1967
- oidc?: OIDC;
1967
+ oidc?: OIDC | undefined;
1968
1968
  }
1969
1969
  /**
1970
1970
  * <p>The Kubernetes network configuration for the cluster. The response contains a value for
@@ -1982,7 +1982,7 @@ export interface KubernetesNetworkConfigResponse {
1982
1982
  * changed.</p>
1983
1983
  * @public
1984
1984
  */
1985
- serviceIpv4Cidr?: string;
1985
+ serviceIpv4Cidr?: string | undefined;
1986
1986
  /**
1987
1987
  * <p>The CIDR block that Kubernetes pod and service IP addresses are assigned from if you
1988
1988
  * created a 1.21 or later cluster with version 1.10.1 or later of the Amazon VPC CNI add-on and
@@ -1992,7 +1992,7 @@ export interface KubernetesNetworkConfigResponse {
1992
1992
  * create the cluster.</p>
1993
1993
  * @public
1994
1994
  */
1995
- serviceIpv6Cidr?: string;
1995
+ serviceIpv6Cidr?: string | undefined;
1996
1996
  /**
1997
1997
  * <p>The IP family used to assign Kubernetes <code>Pod</code> and <code>Service</code> objects
1998
1998
  * IP addresses. The IP family is always <code>ipv4</code>, unless you have a
@@ -2001,7 +2001,7 @@ export interface KubernetesNetworkConfigResponse {
2001
2001
  * </p>
2002
2002
  * @public
2003
2003
  */
2004
- ipFamily?: IpFamily;
2004
+ ipFamily?: IpFamily | undefined;
2005
2005
  }
2006
2006
  /**
2007
2007
  * <p>The placement configuration for all the control plane instances of your local Amazon EKS cluster on an Amazon Web Services Outpost. For more information, see
@@ -2013,7 +2013,7 @@ export interface ControlPlanePlacementResponse {
2013
2013
  * <p>The name of the placement group for the Kubernetes control plane instances.</p>
2014
2014
  * @public
2015
2015
  */
2016
- groupName?: string;
2016
+ groupName?: string | undefined;
2017
2017
  }
2018
2018
  /**
2019
2019
  * <p>An object representing the configuration of your local Amazon EKS cluster on
@@ -2041,7 +2041,7 @@ export interface OutpostConfigResponse {
2041
2041
  * considerations</a> in the <i>Amazon EKS User Guide</i>.</p>
2042
2042
  * @public
2043
2043
  */
2044
- controlPlanePlacement?: ControlPlanePlacementResponse;
2044
+ controlPlanePlacement?: ControlPlanePlacementResponse | undefined;
2045
2045
  }
2046
2046
  /**
2047
2047
  * <p>An object representing an Amazon EKS cluster VPC configuration
@@ -2053,30 +2053,30 @@ export interface VpcConfigResponse {
2053
2053
  * <p>The subnets associated with your cluster.</p>
2054
2054
  * @public
2055
2055
  */
2056
- subnetIds?: string[];
2056
+ subnetIds?: string[] | undefined;
2057
2057
  /**
2058
2058
  * <p>The security groups associated with the cross-account elastic network interfaces that
2059
2059
  * are used to allow communication between your nodes and the Kubernetes control plane.</p>
2060
2060
  * @public
2061
2061
  */
2062
- securityGroupIds?: string[];
2062
+ securityGroupIds?: string[] | undefined;
2063
2063
  /**
2064
2064
  * <p>The cluster security group that was created by Amazon EKS for the cluster.
2065
2065
  * Managed node groups use this security group for control-plane-to-data-plane
2066
2066
  * communication.</p>
2067
2067
  * @public
2068
2068
  */
2069
- clusterSecurityGroupId?: string;
2069
+ clusterSecurityGroupId?: string | undefined;
2070
2070
  /**
2071
2071
  * <p>The VPC associated with your cluster.</p>
2072
2072
  * @public
2073
2073
  */
2074
- vpcId?: string;
2074
+ vpcId?: string | undefined;
2075
2075
  /**
2076
2076
  * <p>Whether the public API server endpoint is enabled.</p>
2077
2077
  * @public
2078
2078
  */
2079
- endpointPublicAccess?: boolean;
2079
+ endpointPublicAccess?: boolean | undefined;
2080
2080
  /**
2081
2081
  * <p>This parameter indicates whether the Amazon EKS private API server endpoint is
2082
2082
  * enabled. If the Amazon EKS private API server endpoint is enabled, Kubernetes API
@@ -2090,13 +2090,13 @@ export interface VpcConfigResponse {
2090
2090
  * </i>.</p>
2091
2091
  * @public
2092
2092
  */
2093
- endpointPrivateAccess?: boolean;
2093
+ endpointPrivateAccess?: boolean | undefined;
2094
2094
  /**
2095
2095
  * <p>The CIDR blocks that are allowed access to your cluster's public Kubernetes API server
2096
2096
  * endpoint.</p>
2097
2097
  * @public
2098
2098
  */
2099
- publicAccessCidrs?: string[];
2099
+ publicAccessCidrs?: string[] | undefined;
2100
2100
  }
2101
2101
  /**
2102
2102
  * @public
@@ -2129,7 +2129,7 @@ export interface UpgradePolicyResponse {
2129
2129
  * </p>
2130
2130
  * @public
2131
2131
  */
2132
- supportType?: SupportType;
2132
+ supportType?: SupportType | undefined;
2133
2133
  }
2134
2134
  /**
2135
2135
  * <p>The status of zonal shift configuration for the cluster</p>
@@ -2140,7 +2140,7 @@ export interface ZonalShiftConfigResponse {
2140
2140
  * <p>Whether the zonal shift is enabled.</p>
2141
2141
  * @public
2142
2142
  */
2143
- enabled?: boolean;
2143
+ enabled?: boolean | undefined;
2144
2144
  }
2145
2145
  /**
2146
2146
  * <p>An object representing an Amazon EKS cluster.</p>
@@ -2151,33 +2151,33 @@ export interface Cluster {
2151
2151
  * <p>The name of your cluster.</p>
2152
2152
  * @public
2153
2153
  */
2154
- name?: string;
2154
+ name?: string | undefined;
2155
2155
  /**
2156
2156
  * <p>The Amazon Resource Name (ARN) of the cluster.</p>
2157
2157
  * @public
2158
2158
  */
2159
- arn?: string;
2159
+ arn?: string | undefined;
2160
2160
  /**
2161
2161
  * <p>The Unix epoch timestamp at object creation.</p>
2162
2162
  * @public
2163
2163
  */
2164
- createdAt?: Date;
2164
+ createdAt?: Date | undefined;
2165
2165
  /**
2166
2166
  * <p>The Kubernetes server version for the cluster.</p>
2167
2167
  * @public
2168
2168
  */
2169
- version?: string;
2169
+ version?: string | undefined;
2170
2170
  /**
2171
2171
  * <p>The endpoint for your Kubernetes API server.</p>
2172
2172
  * @public
2173
2173
  */
2174
- endpoint?: string;
2174
+ endpoint?: string | undefined;
2175
2175
  /**
2176
2176
  * <p>The Amazon Resource Name (ARN) of the IAM role that provides permissions for the Kubernetes
2177
2177
  * control plane to make calls to Amazon Web Services API operations on your behalf.</p>
2178
2178
  * @public
2179
2179
  */
2180
- roleArn?: string;
2180
+ roleArn?: string | undefined;
2181
2181
  /**
2182
2182
  * <p>The VPC configuration used by the cluster control plane. Amazon EKS VPC
2183
2183
  * resources have specific requirements to work properly with Kubernetes. For more information,
@@ -2186,38 +2186,38 @@ export interface Cluster {
2186
2186
  * <i>Amazon EKS User Guide</i>.</p>
2187
2187
  * @public
2188
2188
  */
2189
- resourcesVpcConfig?: VpcConfigResponse;
2189
+ resourcesVpcConfig?: VpcConfigResponse | undefined;
2190
2190
  /**
2191
2191
  * <p>The Kubernetes network configuration for the cluster.</p>
2192
2192
  * @public
2193
2193
  */
2194
- kubernetesNetworkConfig?: KubernetesNetworkConfigResponse;
2194
+ kubernetesNetworkConfig?: KubernetesNetworkConfigResponse | undefined;
2195
2195
  /**
2196
2196
  * <p>The logging configuration for your cluster.</p>
2197
2197
  * @public
2198
2198
  */
2199
- logging?: Logging;
2199
+ logging?: Logging | undefined;
2200
2200
  /**
2201
2201
  * <p>The identity provider information for the cluster.</p>
2202
2202
  * @public
2203
2203
  */
2204
- identity?: Identity;
2204
+ identity?: Identity | undefined;
2205
2205
  /**
2206
2206
  * <p>The current status of the cluster.</p>
2207
2207
  * @public
2208
2208
  */
2209
- status?: ClusterStatus;
2209
+ status?: ClusterStatus | undefined;
2210
2210
  /**
2211
2211
  * <p>The <code>certificate-authority-data</code> for your cluster.</p>
2212
2212
  * @public
2213
2213
  */
2214
- certificateAuthority?: Certificate;
2214
+ certificateAuthority?: Certificate | undefined;
2215
2215
  /**
2216
2216
  * <p>A unique, case-sensitive identifier that you provide to ensure
2217
2217
  * the idempotency of the request.</p>
2218
2218
  * @public
2219
2219
  */
2220
- clientRequestToken?: string;
2220
+ clientRequestToken?: string | undefined;
2221
2221
  /**
2222
2222
  * <p>The platform version of your Amazon EKS cluster. For more information about
2223
2223
  * clusters deployed on the Amazon Web Services Cloud, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/platform-versions.html">Platform
@@ -2230,47 +2230,47 @@ export interface Cluster {
2230
2230
  * </i>.</p>
2231
2231
  * @public
2232
2232
  */
2233
- platformVersion?: string;
2233
+ platformVersion?: string | undefined;
2234
2234
  /**
2235
2235
  * <p>Metadata that assists with categorization and organization.
2236
2236
  * Each tag consists of a key and an optional value. You define both. Tags don't
2237
2237
  * propagate to any other cluster or Amazon Web Services resources.</p>
2238
2238
  * @public
2239
2239
  */
2240
- tags?: Record<string, string>;
2240
+ tags?: Record<string, string> | undefined;
2241
2241
  /**
2242
2242
  * <p>The encryption configuration for the cluster.</p>
2243
2243
  * @public
2244
2244
  */
2245
- encryptionConfig?: EncryptionConfig[];
2245
+ encryptionConfig?: EncryptionConfig[] | undefined;
2246
2246
  /**
2247
2247
  * <p>The configuration used to connect to a cluster for registration.</p>
2248
2248
  * @public
2249
2249
  */
2250
- connectorConfig?: ConnectorConfigResponse;
2250
+ connectorConfig?: ConnectorConfigResponse | undefined;
2251
2251
  /**
2252
2252
  * <p>The ID of your local Amazon EKS cluster on an Amazon Web Services Outpost. This
2253
2253
  * property isn't available for an Amazon EKS cluster on the Amazon Web Services
2254
2254
  * cloud.</p>
2255
2255
  * @public
2256
2256
  */
2257
- id?: string;
2257
+ id?: string | undefined;
2258
2258
  /**
2259
2259
  * <p>An object representing the health of your Amazon EKS cluster.</p>
2260
2260
  * @public
2261
2261
  */
2262
- health?: ClusterHealth;
2262
+ health?: ClusterHealth | undefined;
2263
2263
  /**
2264
2264
  * <p>An object representing the configuration of your local Amazon EKS cluster on
2265
2265
  * an Amazon Web Services Outpost. This object isn't available for clusters on the Amazon Web Services cloud.</p>
2266
2266
  * @public
2267
2267
  */
2268
- outpostConfig?: OutpostConfigResponse;
2268
+ outpostConfig?: OutpostConfigResponse | undefined;
2269
2269
  /**
2270
2270
  * <p>The access configuration for the cluster.</p>
2271
2271
  * @public
2272
2272
  */
2273
- accessConfig?: AccessConfigResponse;
2273
+ accessConfig?: AccessConfigResponse | undefined;
2274
2274
  /**
2275
2275
  * <p>This value indicates if extended support is enabled or disabled for the cluster.</p>
2276
2276
  * <p>
@@ -2278,12 +2278,12 @@ export interface Cluster {
2278
2278
  * </p>
2279
2279
  * @public
2280
2280
  */
2281
- upgradePolicy?: UpgradePolicyResponse;
2281
+ upgradePolicy?: UpgradePolicyResponse | undefined;
2282
2282
  /**
2283
2283
  * <p>The configuration for zonal shift for the cluster.</p>
2284
2284
  * @public
2285
2285
  */
2286
- zonalShiftConfig?: ZonalShiftConfigResponse;
2286
+ zonalShiftConfig?: ZonalShiftConfigResponse | undefined;
2287
2287
  }
2288
2288
  /**
2289
2289
  * @public
@@ -2293,7 +2293,7 @@ export interface CreateClusterResponse {
2293
2293
  * <p>The full description of your new cluster.</p>
2294
2294
  * @public
2295
2295
  */
2296
- cluster?: Cluster;
2296
+ cluster?: Cluster | undefined;
2297
2297
  }
2298
2298
  /**
2299
2299
  * <p>The service is unavailable. Back off and retry the operation.</p>
@@ -2321,18 +2321,18 @@ export declare class UnsupportedAvailabilityZoneException extends __BaseExceptio
2321
2321
  * <p>The Amazon EKS cluster associated with the exception.</p>
2322
2322
  * @public
2323
2323
  */
2324
- clusterName?: string;
2324
+ clusterName?: string | undefined;
2325
2325
  /**
2326
2326
  * <p>The Amazon EKS managed node group associated with the exception.</p>
2327
2327
  * @public
2328
2328
  */
2329
- nodegroupName?: string;
2329
+ nodegroupName?: string | undefined;
2330
2330
  /**
2331
2331
  * <p>The supported Availability Zones for your account. Choose subnets in these
2332
2332
  * Availability Zones for your cluster.</p>
2333
2333
  * @public
2334
2334
  */
2335
- validZones?: string[];
2335
+ validZones?: string[] | undefined;
2336
2336
  /**
2337
2337
  * @internal
2338
2338
  */
@@ -2372,12 +2372,12 @@ export interface EksAnywhereSubscriptionTerm {
2372
2372
  * month or 36 month subscription.</p>
2373
2373
  * @public
2374
2374
  */
2375
- duration?: number;
2375
+ duration?: number | undefined;
2376
2376
  /**
2377
2377
  * <p>The term unit of the subscription. Valid value is <code>MONTHS</code>.</p>
2378
2378
  * @public
2379
2379
  */
2380
- unit?: EksAnywhereSubscriptionTermUnit;
2380
+ unit?: EksAnywhereSubscriptionTermUnit | undefined;
2381
2381
  }
2382
2382
  /**
2383
2383
  * @public
@@ -2404,33 +2404,33 @@ export interface CreateEksAnywhereSubscriptionRequest {
2404
2404
  * and 100. This value can't be changed after creating the subscription.</p>
2405
2405
  * @public
2406
2406
  */
2407
- licenseQuantity?: number;
2407
+ licenseQuantity?: number | undefined;
2408
2408
  /**
2409
2409
  * <p>The license type for all licenses in the subscription. Valid value is CLUSTER. With
2410
2410
  * the CLUSTER license type, each license covers support for a single EKS Anywhere
2411
2411
  * cluster.</p>
2412
2412
  * @public
2413
2413
  */
2414
- licenseType?: EksAnywhereSubscriptionLicenseType;
2414
+ licenseType?: EksAnywhereSubscriptionLicenseType | undefined;
2415
2415
  /**
2416
2416
  * <p>A boolean indicating whether the subscription auto renews at the end of the
2417
2417
  * term.</p>
2418
2418
  * @public
2419
2419
  */
2420
- autoRenew?: boolean;
2420
+ autoRenew?: boolean | undefined;
2421
2421
  /**
2422
2422
  * <p>A unique, case-sensitive identifier that you provide to ensure
2423
2423
  * the idempotency of the request.</p>
2424
2424
  * @public
2425
2425
  */
2426
- clientRequestToken?: string;
2426
+ clientRequestToken?: string | undefined;
2427
2427
  /**
2428
2428
  * <p>The metadata for a subscription to assist with categorization and organization. Each
2429
2429
  * tag consists of a key and an optional value. Subscription tags don't propagate to any
2430
2430
  * other resources associated with the subscription.</p>
2431
2431
  * @public
2432
2432
  */
2433
- tags?: Record<string, string>;
2433
+ tags?: Record<string, string> | undefined;
2434
2434
  }
2435
2435
  /**
2436
2436
  * <p>An EKS Anywhere subscription authorizing the customer to support for licensed clusters
@@ -2442,69 +2442,69 @@ export interface EksAnywhereSubscription {
2442
2442
  * <p>UUID identifying a subscription.</p>
2443
2443
  * @public
2444
2444
  */
2445
- id?: string;
2445
+ id?: string | undefined;
2446
2446
  /**
2447
2447
  * <p>The Amazon Resource Name (ARN) for the subscription.</p>
2448
2448
  * @public
2449
2449
  */
2450
- arn?: string;
2450
+ arn?: string | undefined;
2451
2451
  /**
2452
2452
  * <p>The Unix timestamp in seconds for when the subscription was created.</p>
2453
2453
  * @public
2454
2454
  */
2455
- createdAt?: Date;
2455
+ createdAt?: Date | undefined;
2456
2456
  /**
2457
2457
  * <p>The Unix timestamp in seconds for when the subscription is effective.</p>
2458
2458
  * @public
2459
2459
  */
2460
- effectiveDate?: Date;
2460
+ effectiveDate?: Date | undefined;
2461
2461
  /**
2462
2462
  * <p>The Unix timestamp in seconds for when the subscription will expire or auto renew,
2463
2463
  * depending on the auto renew configuration of the subscription object.</p>
2464
2464
  * @public
2465
2465
  */
2466
- expirationDate?: Date;
2466
+ expirationDate?: Date | undefined;
2467
2467
  /**
2468
2468
  * <p>The number of licenses included in a subscription. Valid values are between 1 and
2469
2469
  * 100.</p>
2470
2470
  * @public
2471
2471
  */
2472
- licenseQuantity?: number;
2472
+ licenseQuantity?: number | undefined;
2473
2473
  /**
2474
2474
  * <p>The type of licenses included in the subscription. Valid value is CLUSTER. With the
2475
2475
  * CLUSTER license type, each license covers support for a single EKS Anywhere
2476
2476
  * cluster.</p>
2477
2477
  * @public
2478
2478
  */
2479
- licenseType?: EksAnywhereSubscriptionLicenseType;
2479
+ licenseType?: EksAnywhereSubscriptionLicenseType | undefined;
2480
2480
  /**
2481
2481
  * <p>An EksAnywhereSubscriptionTerm object. </p>
2482
2482
  * @public
2483
2483
  */
2484
- term?: EksAnywhereSubscriptionTerm;
2484
+ term?: EksAnywhereSubscriptionTerm | undefined;
2485
2485
  /**
2486
2486
  * <p>The status of a subscription.</p>
2487
2487
  * @public
2488
2488
  */
2489
- status?: string;
2489
+ status?: string | undefined;
2490
2490
  /**
2491
2491
  * <p>A boolean indicating whether or not a subscription will auto renew when it
2492
2492
  * expires.</p>
2493
2493
  * @public
2494
2494
  */
2495
- autoRenew?: boolean;
2495
+ autoRenew?: boolean | undefined;
2496
2496
  /**
2497
2497
  * <p>Amazon Web Services License Manager ARN associated with the subscription.</p>
2498
2498
  * @public
2499
2499
  */
2500
- licenseArns?: string[];
2500
+ licenseArns?: string[] | undefined;
2501
2501
  /**
2502
2502
  * <p>The metadata for a subscription to assist with categorization and organization. Each
2503
2503
  * tag consists of a key and an optional value. Subscription tags do not propagate to any
2504
2504
  * other resources associated with the subscription.</p>
2505
2505
  * @public
2506
2506
  */
2507
- tags?: Record<string, string>;
2507
+ tags?: Record<string, string> | undefined;
2508
2508
  }
2509
2509
  /**
2510
2510
  * @public
@@ -2514,7 +2514,7 @@ export interface CreateEksAnywhereSubscriptionResponse {
2514
2514
  * <p>The full description of the subscription.</p>
2515
2515
  * @public
2516
2516
  */
2517
- subscription?: EksAnywhereSubscription;
2517
+ subscription?: EksAnywhereSubscription | undefined;
2518
2518
  }
2519
2519
  /**
2520
2520
  * <p>An object representing an Fargate profile selector.</p>
@@ -2525,13 +2525,13 @@ export interface FargateProfileSelector {
2525
2525
  * <p>The Kubernetes <code>namespace</code> that the selector should match.</p>
2526
2526
  * @public
2527
2527
  */
2528
- namespace?: string;
2528
+ namespace?: string | undefined;
2529
2529
  /**
2530
2530
  * <p>The Kubernetes labels that the selector should match. A pod must contain all of the labels
2531
2531
  * that are specified in the selector for it to be considered a match.</p>
2532
2532
  * @public
2533
2533
  */
2534
- labels?: Record<string, string>;
2534
+ labels?: Record<string, string> | undefined;
2535
2535
  }
2536
2536
  /**
2537
2537
  * @public
@@ -2564,7 +2564,7 @@ export interface CreateFargateProfileRequest {
2564
2564
  * (with no direct route to an Internet Gateway) are accepted for this parameter.</p>
2565
2565
  * @public
2566
2566
  */
2567
- subnets?: string[];
2567
+ subnets?: string[] | undefined;
2568
2568
  /**
2569
2569
  * <p>The selectors to match for a <code>Pod</code> to use this Fargate
2570
2570
  * profile. Each selector must have an associated Kubernetes <code>namespace</code>. Optionally,
@@ -2572,20 +2572,20 @@ export interface CreateFargateProfileRequest {
2572
2572
  * up to five selectors in a Fargate profile.</p>
2573
2573
  * @public
2574
2574
  */
2575
- selectors?: FargateProfileSelector[];
2575
+ selectors?: FargateProfileSelector[] | undefined;
2576
2576
  /**
2577
2577
  * <p>A unique, case-sensitive identifier that you provide to ensure
2578
2578
  * the idempotency of the request.</p>
2579
2579
  * @public
2580
2580
  */
2581
- clientRequestToken?: string;
2581
+ clientRequestToken?: string | undefined;
2582
2582
  /**
2583
2583
  * <p>Metadata that assists with categorization and organization.
2584
2584
  * Each tag consists of a key and an optional value. You define both. Tags don't
2585
2585
  * propagate to any other cluster or Amazon Web Services resources.</p>
2586
2586
  * @public
2587
2587
  */
2588
- tags?: Record<string, string>;
2588
+ tags?: Record<string, string> | undefined;
2589
2589
  }
2590
2590
  /**
2591
2591
  * @public
@@ -2610,17 +2610,17 @@ export interface FargateProfileIssue {
2610
2610
  * <p>A brief description of the error.</p>
2611
2611
  * @public
2612
2612
  */
2613
- code?: FargateProfileIssueCode;
2613
+ code?: FargateProfileIssueCode | undefined;
2614
2614
  /**
2615
2615
  * <p>The error message associated with the issue.</p>
2616
2616
  * @public
2617
2617
  */
2618
- message?: string;
2618
+ message?: string | undefined;
2619
2619
  /**
2620
2620
  * <p>The Amazon Web Services resources that are affected by this issue.</p>
2621
2621
  * @public
2622
2622
  */
2623
- resourceIds?: string[];
2623
+ resourceIds?: string[] | undefined;
2624
2624
  }
2625
2625
  /**
2626
2626
  * <p>The health status of the Fargate profile. If there are issues with
@@ -2632,7 +2632,7 @@ export interface FargateProfileHealth {
2632
2632
  * <p>Any issues that are associated with the Fargate profile.</p>
2633
2633
  * @public
2634
2634
  */
2635
- issues?: FargateProfileIssue[];
2635
+ issues?: FargateProfileIssue[] | undefined;
2636
2636
  }
2637
2637
  /**
2638
2638
  * @public
@@ -2658,22 +2658,22 @@ export interface FargateProfile {
2658
2658
  * <p>The name of the Fargate profile.</p>
2659
2659
  * @public
2660
2660
  */
2661
- fargateProfileName?: string;
2661
+ fargateProfileName?: string | undefined;
2662
2662
  /**
2663
2663
  * <p>The full Amazon Resource Name (ARN) of the Fargate profile.</p>
2664
2664
  * @public
2665
2665
  */
2666
- fargateProfileArn?: string;
2666
+ fargateProfileArn?: string | undefined;
2667
2667
  /**
2668
2668
  * <p>The name of your cluster.</p>
2669
2669
  * @public
2670
2670
  */
2671
- clusterName?: string;
2671
+ clusterName?: string | undefined;
2672
2672
  /**
2673
2673
  * <p>The Unix epoch timestamp at object creation.</p>
2674
2674
  * @public
2675
2675
  */
2676
- createdAt?: Date;
2676
+ createdAt?: Date | undefined;
2677
2677
  /**
2678
2678
  * <p>The Amazon Resource Name (ARN) of the <code>Pod</code> execution role to use for any <code>Pod</code>
2679
2679
  * that matches the selectors in the Fargate profile. For more information,
@@ -2681,36 +2681,36 @@ export interface FargateProfile {
2681
2681
  * <code>Pod</code> execution role</a> in the <i>Amazon EKS User Guide</i>.</p>
2682
2682
  * @public
2683
2683
  */
2684
- podExecutionRoleArn?: string;
2684
+ podExecutionRoleArn?: string | undefined;
2685
2685
  /**
2686
2686
  * <p>The IDs of subnets to launch a <code>Pod</code> into.</p>
2687
2687
  * @public
2688
2688
  */
2689
- subnets?: string[];
2689
+ subnets?: string[] | undefined;
2690
2690
  /**
2691
2691
  * <p>The selectors to match for a <code>Pod</code> to use this Fargate
2692
2692
  * profile.</p>
2693
2693
  * @public
2694
2694
  */
2695
- selectors?: FargateProfileSelector[];
2695
+ selectors?: FargateProfileSelector[] | undefined;
2696
2696
  /**
2697
2697
  * <p>The current status of the Fargate profile.</p>
2698
2698
  * @public
2699
2699
  */
2700
- status?: FargateProfileStatus;
2700
+ status?: FargateProfileStatus | undefined;
2701
2701
  /**
2702
2702
  * <p>Metadata that assists with categorization and organization.
2703
2703
  * Each tag consists of a key and an optional value. You define both. Tags don't
2704
2704
  * propagate to any other cluster or Amazon Web Services resources.</p>
2705
2705
  * @public
2706
2706
  */
2707
- tags?: Record<string, string>;
2707
+ tags?: Record<string, string> | undefined;
2708
2708
  /**
2709
2709
  * <p>The health status of the Fargate profile. If there are issues with
2710
2710
  * your Fargate profile's health, they are listed here.</p>
2711
2711
  * @public
2712
2712
  */
2713
- health?: FargateProfileHealth;
2713
+ health?: FargateProfileHealth | undefined;
2714
2714
  }
2715
2715
  /**
2716
2716
  * @public
@@ -2720,7 +2720,7 @@ export interface CreateFargateProfileResponse {
2720
2720
  * <p>The full description of your new Fargate profile.</p>
2721
2721
  * @public
2722
2722
  */
2723
- fargateProfile?: FargateProfile;
2723
+ fargateProfile?: FargateProfile | undefined;
2724
2724
  }
2725
2725
  /**
2726
2726
  * @public
@@ -2763,20 +2763,20 @@ export interface LaunchTemplateSpecification {
2763
2763
  * request, but not both.</p>
2764
2764
  * @public
2765
2765
  */
2766
- name?: string;
2766
+ name?: string | undefined;
2767
2767
  /**
2768
2768
  * <p>The version number of the launch template to use. If no version is specified, then the
2769
2769
  * template's default version is used.</p>
2770
2770
  * @public
2771
2771
  */
2772
- version?: string;
2772
+ version?: string | undefined;
2773
2773
  /**
2774
2774
  * <p>The ID of the launch template.</p>
2775
2775
  * <p>You must specify either the launch template ID or the launch template name in the
2776
2776
  * request, but not both.</p>
2777
2777
  * @public
2778
2778
  */
2779
- id?: string;
2779
+ id?: string | undefined;
2780
2780
  }
2781
2781
  /**
2782
2782
  * <p>An object representing the remote access configuration for the managed node
@@ -2792,7 +2792,7 @@ export interface RemoteAccessConfig {
2792
2792
  * the <i>Amazon Elastic Compute Cloud User Guide for Windows Instances</i>.</p>
2793
2793
  * @public
2794
2794
  */
2795
- ec2SshKey?: string;
2795
+ ec2SshKey?: string | undefined;
2796
2796
  /**
2797
2797
  * <p>The security group IDs that are allowed SSH access (port 22) to the nodes. For
2798
2798
  * Windows, the port is 3389. If you specify an Amazon EC2 SSH key but don't
@@ -2801,7 +2801,7 @@ export interface RemoteAccessConfig {
2801
2801
  * <a href="https://docs.aws.amazon.com/vpc/latest/userguide/VPC_SecurityGroups.html">Security Groups for Your VPC</a> in the <i>Amazon Virtual Private Cloud User Guide</i>.</p>
2802
2802
  * @public
2803
2803
  */
2804
- sourceSecurityGroups?: string[];
2804
+ sourceSecurityGroups?: string[] | undefined;
2805
2805
  }
2806
2806
  /**
2807
2807
  * <p>An object representing the scaling configuration details for the Auto Scaling
@@ -2815,13 +2815,13 @@ export interface NodegroupScalingConfig {
2815
2815
  * <p>The minimum number of nodes that the managed node group can scale in to.</p>
2816
2816
  * @public
2817
2817
  */
2818
- minSize?: number;
2818
+ minSize?: number | undefined;
2819
2819
  /**
2820
2820
  * <p>The maximum number of nodes that the managed node group can scale out to. For
2821
2821
  * 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>
2822
2822
  * @public
2823
2823
  */
2824
- maxSize?: number;
2824
+ maxSize?: number | undefined;
2825
2825
  /**
2826
2826
  * <p>The current number of nodes that the managed node group should maintain.</p>
2827
2827
  * <important>
@@ -2846,7 +2846,7 @@ export interface NodegroupScalingConfig {
2846
2846
  * node group lower than <code>minSize</code> or higher than <code>maxSize</code>.</p>
2847
2847
  * @public
2848
2848
  */
2849
- desiredSize?: number;
2849
+ desiredSize?: number | undefined;
2850
2850
  }
2851
2851
  /**
2852
2852
  * @public
@@ -2872,17 +2872,17 @@ export interface Taint {
2872
2872
  * <p>The key of the taint.</p>
2873
2873
  * @public
2874
2874
  */
2875
- key?: string;
2875
+ key?: string | undefined;
2876
2876
  /**
2877
2877
  * <p>The value of the taint.</p>
2878
2878
  * @public
2879
2879
  */
2880
- value?: string;
2880
+ value?: string | undefined;
2881
2881
  /**
2882
2882
  * <p>The effect of the taint.</p>
2883
2883
  * @public
2884
2884
  */
2885
- effect?: TaintEffect;
2885
+ effect?: TaintEffect | undefined;
2886
2886
  }
2887
2887
  /**
2888
2888
  * <p>The node group update configuration.</p>
@@ -2895,14 +2895,14 @@ export interface NodegroupUpdateConfig {
2895
2895
  * have a value.The maximum number is 100.</p>
2896
2896
  * @public
2897
2897
  */
2898
- maxUnavailable?: number;
2898
+ maxUnavailable?: number | undefined;
2899
2899
  /**
2900
2900
  * <p>The maximum percentage of nodes unavailable during a version update. This percentage
2901
2901
  * of nodes are updated in parallel, up to 100 nodes at once. This value or
2902
2902
  * <code>maxUnavailable</code> is required to have a value.</p>
2903
2903
  * @public
2904
2904
  */
2905
- maxUnavailablePercentage?: number;
2905
+ maxUnavailablePercentage?: number | undefined;
2906
2906
  }
2907
2907
  /**
2908
2908
  * @public
@@ -2923,7 +2923,7 @@ export interface CreateNodegroupRequest {
2923
2923
  * node group.</p>
2924
2924
  * @public
2925
2925
  */
2926
- scalingConfig?: NodegroupScalingConfig;
2926
+ scalingConfig?: NodegroupScalingConfig | undefined;
2927
2927
  /**
2928
2928
  * <p>The root device disk size (in GiB) for your node group instances. The default disk
2929
2929
  * size is 20 GiB for Linux and Bottlerocket. The default disk size is 50 GiB for Windows.
@@ -2931,7 +2931,7 @@ export interface CreateNodegroupRequest {
2931
2931
  * 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">Customizing managed nodes with launch templates</a> in the <i>Amazon EKS User Guide</i>.</p>
2932
2932
  * @public
2933
2933
  */
2934
- diskSize?: number;
2934
+ diskSize?: number | undefined;
2935
2935
  /**
2936
2936
  * <p>The subnets to use for the Auto Scaling group that is created for your node group.
2937
2937
  * If you specify <code>launchTemplate</code>, then don't specify <code>
@@ -2955,7 +2955,7 @@ export interface CreateNodegroupRequest {
2955
2955
  * the <i>Amazon EKS User Guide</i>.</p>
2956
2956
  * @public
2957
2957
  */
2958
- instanceTypes?: string[];
2958
+ instanceTypes?: string[] | undefined;
2959
2959
  /**
2960
2960
  * <p>The AMI type for your node group. If you specify <code>launchTemplate</code>, and your launch template uses a custom AMI,
2961
2961
  * then don't specify <code>amiType</code>, or the node group deployment
@@ -2965,7 +2965,7 @@ export interface CreateNodegroupRequest {
2965
2965
  * <code>ConfigMap</code>. For more information about using launch templates with Amazon EKS, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html">Customizing managed nodes with launch templates</a> in the <i>Amazon EKS User Guide</i>.</p>
2966
2966
  * @public
2967
2967
  */
2968
- amiType?: AMITypes;
2968
+ amiType?: AMITypes | undefined;
2969
2969
  /**
2970
2970
  * <p>The remote access configuration to use with your node group. For Linux, the protocol
2971
2971
  * is SSH. For Windows, the protocol is RDP. If you specify <code>launchTemplate</code>, then don't specify
@@ -2973,7 +2973,7 @@ export interface CreateNodegroupRequest {
2973
2973
  * For more information about using launch templates with Amazon EKS, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html">Customizing managed nodes with launch templates</a> in the <i>Amazon EKS User Guide</i>.</p>
2974
2974
  * @public
2975
2975
  */
2976
- remoteAccess?: RemoteAccessConfig;
2976
+ remoteAccess?: RemoteAccessConfig | undefined;
2977
2977
  /**
2978
2978
  * <p>The Amazon Resource Name (ARN) of the IAM role to associate with your node group. The
2979
2979
  * 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
@@ -2995,27 +2995,27 @@ export interface CreateNodegroupRequest {
2995
2995
  * created.</p>
2996
2996
  * @public
2997
2997
  */
2998
- labels?: Record<string, string>;
2998
+ labels?: Record<string, string> | undefined;
2999
2999
  /**
3000
3000
  * <p>The Kubernetes taints to be applied to the nodes in the node group. For more information,
3001
3001
  * see <a href="https://docs.aws.amazon.com/eks/latest/userguide/node-taints-managed-node-groups.html">Node taints on
3002
3002
  * managed node groups</a>.</p>
3003
3003
  * @public
3004
3004
  */
3005
- taints?: Taint[];
3005
+ taints?: Taint[] | undefined;
3006
3006
  /**
3007
3007
  * <p>Metadata that assists with categorization and organization.
3008
3008
  * Each tag consists of a key and an optional value. You define both. Tags don't
3009
3009
  * propagate to any other cluster or Amazon Web Services resources.</p>
3010
3010
  * @public
3011
3011
  */
3012
- tags?: Record<string, string>;
3012
+ tags?: Record<string, string> | undefined;
3013
3013
  /**
3014
3014
  * <p>A unique, case-sensitive identifier that you provide to ensure
3015
3015
  * the idempotency of the request.</p>
3016
3016
  * @public
3017
3017
  */
3018
- clientRequestToken?: string;
3018
+ clientRequestToken?: string | undefined;
3019
3019
  /**
3020
3020
  * <p>An object representing a node group's launch template specification. When using this
3021
3021
  * object, don't directly specify <code>instanceTypes</code>, <code>diskSize</code>, or
@@ -3025,17 +3025,17 @@ export interface CreateNodegroupRequest {
3025
3025
  * the <i>Amazon EKS User Guide</i>.</p>
3026
3026
  * @public
3027
3027
  */
3028
- launchTemplate?: LaunchTemplateSpecification;
3028
+ launchTemplate?: LaunchTemplateSpecification | undefined;
3029
3029
  /**
3030
3030
  * <p>The node group update configuration.</p>
3031
3031
  * @public
3032
3032
  */
3033
- updateConfig?: NodegroupUpdateConfig;
3033
+ updateConfig?: NodegroupUpdateConfig | undefined;
3034
3034
  /**
3035
3035
  * <p>The capacity type for your node group.</p>
3036
3036
  * @public
3037
3037
  */
3038
- capacityType?: CapacityTypes;
3038
+ capacityType?: CapacityTypes | undefined;
3039
3039
  /**
3040
3040
  * <p>The Kubernetes version to use for your managed nodes. By default, the Kubernetes version of the
3041
3041
  * cluster is used, and this is the only accepted specified value. If you specify <code>launchTemplate</code>,
@@ -3043,7 +3043,7 @@ export interface CreateNodegroupRequest {
3043
3043
  * 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">Customizing managed nodes with launch templates</a> in the <i>Amazon EKS User Guide</i>.</p>
3044
3044
  * @public
3045
3045
  */
3046
- version?: string;
3046
+ version?: string | undefined;
3047
3047
  /**
3048
3048
  * <p>The AMI version of the Amazon EKS optimized AMI to use with your node group.
3049
3049
  * By default, the latest available AMI version for the node group's current Kubernetes version
@@ -3055,7 +3055,7 @@ export interface CreateNodegroupRequest {
3055
3055
  * For more information about using launch templates with Amazon EKS, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html">Customizing managed nodes with launch templates</a> in the <i>Amazon EKS User Guide</i>.</p>
3056
3056
  * @public
3057
3057
  */
3058
- releaseVersion?: string;
3058
+ releaseVersion?: string | undefined;
3059
3059
  }
3060
3060
  /**
3061
3061
  * @public
@@ -3071,6 +3071,7 @@ export declare const NodegroupIssueCode: {
3071
3071
  readonly AUTO_SCALING_GROUP_OPT_IN_REQUIRED: "AutoScalingGroupOptInRequired";
3072
3072
  readonly AUTO_SCALING_GROUP_RATE_LIMIT_EXCEEDED: "AutoScalingGroupRateLimitExceeded";
3073
3073
  readonly CLUSTER_UNREACHABLE: "ClusterUnreachable";
3074
+ readonly EC2_INSTANCE_TYPE_DOES_NOT_EXIST: "Ec2InstanceTypeDoesNotExist";
3074
3075
  readonly EC2_LAUNCH_TEMPLATE_DELETION_FAILURE: "Ec2LaunchTemplateDeletionFailure";
3075
3076
  readonly EC2_LAUNCH_TEMPLATE_INVALID_CONFIGURATION: "Ec2LaunchTemplateInvalidConfiguration";
3076
3077
  readonly EC2_LAUNCH_TEMPLATE_MAX_LIMIT_EXCEEDED: "Ec2LaunchTemplateMaxLimitExceeded";
@@ -3137,6 +3138,13 @@ export interface Issue {
3137
3138
  * </li>
3138
3139
  * <li>
3139
3140
  * <p>
3141
+ * <b>Ec2InstanceTypeDoesNotExist</b>: One or more of
3142
+ * the supplied Amazon EC2 instance types do not exist. Amazon EKS checked for the
3143
+ * instance types that you provided in this Amazon Web Services Region, and one or more aren't
3144
+ * available.</p>
3145
+ * </li>
3146
+ * <li>
3147
+ * <p>
3140
3148
  * <b>Ec2LaunchTemplateNotFound</b>: We couldn't find
3141
3149
  * the Amazon EC2 launch template for your managed node group. You may be
3142
3150
  * able to recreate a launch template with the same settings to recover.</p>
@@ -3210,17 +3218,17 @@ export interface Issue {
3210
3218
  * </ul>
3211
3219
  * @public
3212
3220
  */
3213
- code?: NodegroupIssueCode;
3221
+ code?: NodegroupIssueCode | undefined;
3214
3222
  /**
3215
3223
  * <p>The error message associated with the issue.</p>
3216
3224
  * @public
3217
3225
  */
3218
- message?: string;
3226
+ message?: string | undefined;
3219
3227
  /**
3220
3228
  * <p>The Amazon Web Services resources that are afflicted by this issue.</p>
3221
3229
  * @public
3222
3230
  */
3223
- resourceIds?: string[];
3231
+ resourceIds?: string[] | undefined;
3224
3232
  }
3225
3233
  /**
3226
3234
  * <p>An object representing the health status of the node group.</p>
@@ -3231,7 +3239,7 @@ export interface NodegroupHealth {
3231
3239
  * <p>Any issues that are associated with the node group. </p>
3232
3240
  * @public
3233
3241
  */
3234
- issues?: Issue[];
3242
+ issues?: Issue[] | undefined;
3235
3243
  }
3236
3244
  /**
3237
3245
  * <p>An object representing the resources associated with the node group, such as Auto
@@ -3243,13 +3251,13 @@ export interface NodegroupResources {
3243
3251
  * <p>The Auto Scaling groups associated with the node group.</p>
3244
3252
  * @public
3245
3253
  */
3246
- autoScalingGroups?: AutoScalingGroup[];
3254
+ autoScalingGroups?: AutoScalingGroup[] | undefined;
3247
3255
  /**
3248
3256
  * <p>The remote access security group associated with the node group. This security group
3249
3257
  * controls SSH access to the nodes.</p>
3250
3258
  * @public
3251
3259
  */
3252
- remoteAccessSecurityGroup?: string;
3260
+ remoteAccessSecurityGroup?: string | undefined;
3253
3261
  }
3254
3262
  /**
3255
3263
  * @public
@@ -3277,22 +3285,22 @@ export interface Nodegroup {
3277
3285
  * <p>The name associated with an Amazon EKS managed node group.</p>
3278
3286
  * @public
3279
3287
  */
3280
- nodegroupName?: string;
3288
+ nodegroupName?: string | undefined;
3281
3289
  /**
3282
3290
  * <p>The Amazon Resource Name (ARN) associated with the managed node group.</p>
3283
3291
  * @public
3284
3292
  */
3285
- nodegroupArn?: string;
3293
+ nodegroupArn?: string | undefined;
3286
3294
  /**
3287
3295
  * <p>The name of your cluster.</p>
3288
3296
  * @public
3289
3297
  */
3290
- clusterName?: string;
3298
+ clusterName?: string | undefined;
3291
3299
  /**
3292
3300
  * <p>The Kubernetes version of the managed node group.</p>
3293
3301
  * @public
3294
3302
  */
3295
- version?: string;
3303
+ version?: string | undefined;
3296
3304
  /**
3297
3305
  * <p>If the node group was deployed using a launch template with a custom AMI, then this is
3298
3306
  * the AMI ID that was specified in the launch template. For node groups that weren't
@@ -3300,60 +3308,60 @@ export interface Nodegroup {
3300
3308
  * optimized AMI that the node group was deployed with.</p>
3301
3309
  * @public
3302
3310
  */
3303
- releaseVersion?: string;
3311
+ releaseVersion?: string | undefined;
3304
3312
  /**
3305
3313
  * <p>The Unix epoch timestamp at object creation.</p>
3306
3314
  * @public
3307
3315
  */
3308
- createdAt?: Date;
3316
+ createdAt?: Date | undefined;
3309
3317
  /**
3310
3318
  * <p>The Unix epoch timestamp for the last modification to the object.</p>
3311
3319
  * @public
3312
3320
  */
3313
- modifiedAt?: Date;
3321
+ modifiedAt?: Date | undefined;
3314
3322
  /**
3315
3323
  * <p>The current status of the managed node group.</p>
3316
3324
  * @public
3317
3325
  */
3318
- status?: NodegroupStatus;
3326
+ status?: NodegroupStatus | undefined;
3319
3327
  /**
3320
3328
  * <p>The capacity type of your managed node group.</p>
3321
3329
  * @public
3322
3330
  */
3323
- capacityType?: CapacityTypes;
3331
+ capacityType?: CapacityTypes | undefined;
3324
3332
  /**
3325
3333
  * <p>The scaling configuration details for the Auto Scaling group that is associated with
3326
3334
  * your node group.</p>
3327
3335
  * @public
3328
3336
  */
3329
- scalingConfig?: NodegroupScalingConfig;
3337
+ scalingConfig?: NodegroupScalingConfig | undefined;
3330
3338
  /**
3331
3339
  * <p>If the node group wasn't deployed with a launch template, then this is the instance
3332
3340
  * type that is associated with the node group. If the node group was deployed with a
3333
3341
  * launch template, then this is <code>null</code>.</p>
3334
3342
  * @public
3335
3343
  */
3336
- instanceTypes?: string[];
3344
+ instanceTypes?: string[] | undefined;
3337
3345
  /**
3338
3346
  * <p>The subnets that were specified for the Auto Scaling group that is associated with
3339
3347
  * your node group.</p>
3340
3348
  * @public
3341
3349
  */
3342
- subnets?: string[];
3350
+ subnets?: string[] | undefined;
3343
3351
  /**
3344
3352
  * <p>If the node group wasn't deployed with a launch template, then this is the remote
3345
3353
  * access configuration that is associated with the node group. If the node group was
3346
3354
  * deployed with a launch template, then this is <code>null</code>.</p>
3347
3355
  * @public
3348
3356
  */
3349
- remoteAccess?: RemoteAccessConfig;
3357
+ remoteAccess?: RemoteAccessConfig | undefined;
3350
3358
  /**
3351
3359
  * <p>If the node group was deployed using a launch template with a custom AMI, then this is
3352
3360
  * <code>CUSTOM</code>. For node groups that weren't deployed using a launch template,
3353
3361
  * this is the AMI type that was specified in the node group configuration.</p>
3354
3362
  * @public
3355
3363
  */
3356
- amiType?: AMITypes;
3364
+ amiType?: AMITypes | undefined;
3357
3365
  /**
3358
3366
  * <p>The IAM role associated with your node group. The Amazon EKS
3359
3367
  * node <code>kubelet</code> daemon makes calls to Amazon Web Services APIs on your behalf.
@@ -3361,7 +3369,7 @@ export interface Nodegroup {
3361
3369
  * profile and associated policies.</p>
3362
3370
  * @public
3363
3371
  */
3364
- nodeRole?: string;
3372
+ nodeRole?: string | undefined;
3365
3373
  /**
3366
3374
  * <p>The Kubernetes <code>labels</code> applied to the nodes in the node group.</p>
3367
3375
  * <note>
@@ -3371,7 +3379,7 @@ export interface Nodegroup {
3371
3379
  * </note>
3372
3380
  * @public
3373
3381
  */
3374
- labels?: Record<string, string>;
3382
+ labels?: Record<string, string> | undefined;
3375
3383
  /**
3376
3384
  * <p>The Kubernetes taints to be applied to the nodes in the node group when they are created.
3377
3385
  * Effect is one of <code>No_Schedule</code>, <code>Prefer_No_Schedule</code>, or
@@ -3379,44 +3387,44 @@ export interface Nodegroup {
3379
3387
  * control how workloads are scheduled to your nodes. For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/node-taints-managed-node-groups.html">Node taints on managed node groups</a>.</p>
3380
3388
  * @public
3381
3389
  */
3382
- taints?: Taint[];
3390
+ taints?: Taint[] | undefined;
3383
3391
  /**
3384
3392
  * <p>The resources associated with the node group, such as Auto Scaling groups and security
3385
3393
  * groups for remote access.</p>
3386
3394
  * @public
3387
3395
  */
3388
- resources?: NodegroupResources;
3396
+ resources?: NodegroupResources | undefined;
3389
3397
  /**
3390
3398
  * <p>If the node group wasn't deployed with a launch template, then this is the disk size
3391
3399
  * in the node group configuration. If the node group was deployed with a launch template,
3392
3400
  * then this is <code>null</code>.</p>
3393
3401
  * @public
3394
3402
  */
3395
- diskSize?: number;
3403
+ diskSize?: number | undefined;
3396
3404
  /**
3397
3405
  * <p>The health status of the node group. If there are issues with your node group's
3398
3406
  * health, they are listed here.</p>
3399
3407
  * @public
3400
3408
  */
3401
- health?: NodegroupHealth;
3409
+ health?: NodegroupHealth | undefined;
3402
3410
  /**
3403
3411
  * <p>The node group update configuration.</p>
3404
3412
  * @public
3405
3413
  */
3406
- updateConfig?: NodegroupUpdateConfig;
3414
+ updateConfig?: NodegroupUpdateConfig | undefined;
3407
3415
  /**
3408
3416
  * <p>If a launch template was used to create the node group, then this is the launch
3409
3417
  * template that was used.</p>
3410
3418
  * @public
3411
3419
  */
3412
- launchTemplate?: LaunchTemplateSpecification;
3420
+ launchTemplate?: LaunchTemplateSpecification | undefined;
3413
3421
  /**
3414
3422
  * <p>Metadata that assists with categorization and organization.
3415
3423
  * Each tag consists of a key and an optional value. You define both. Tags don't
3416
3424
  * propagate to any other cluster or Amazon Web Services resources.</p>
3417
3425
  * @public
3418
3426
  */
3419
- tags?: Record<string, string>;
3427
+ tags?: Record<string, string> | undefined;
3420
3428
  }
3421
3429
  /**
3422
3430
  * @public
@@ -3426,7 +3434,7 @@ export interface CreateNodegroupResponse {
3426
3434
  * <p>The full description of your new node group.</p>
3427
3435
  * @public
3428
3436
  */
3429
- nodegroup?: Nodegroup;
3437
+ nodegroup?: Nodegroup | undefined;
3430
3438
  }
3431
3439
  /**
3432
3440
  * @public
@@ -3461,7 +3469,7 @@ export interface CreatePodIdentityAssociationRequest {
3461
3469
  * the idempotency of the request.</p>
3462
3470
  * @public
3463
3471
  */
3464
- clientRequestToken?: string;
3472
+ clientRequestToken?: string | undefined;
3465
3473
  /**
3466
3474
  * <p>Metadata that assists with categorization and organization.
3467
3475
  * Each tag consists of a key and an optional value. You define both. Tags don't
@@ -3499,7 +3507,7 @@ export interface CreatePodIdentityAssociationRequest {
3499
3507
  * </ul>
3500
3508
  * @public
3501
3509
  */
3502
- tags?: Record<string, string>;
3510
+ tags?: Record<string, string> | undefined;
3503
3511
  }
3504
3512
  /**
3505
3513
  * <p>Amazon EKS Pod Identity associations provide the ability to manage credentials for your applications, similar to the way that Amazon EC2 instance profiles provide credentials to Amazon EC2 instances.</p>
@@ -3510,36 +3518,36 @@ export interface PodIdentityAssociation {
3510
3518
  * <p>The name of the cluster that the association is in.</p>
3511
3519
  * @public
3512
3520
  */
3513
- clusterName?: string;
3521
+ clusterName?: string | undefined;
3514
3522
  /**
3515
3523
  * <p>The name of the Kubernetes namespace inside the cluster to create the association in. The
3516
3524
  * service account and the pods that use the service account must be in this
3517
3525
  * namespace.</p>
3518
3526
  * @public
3519
3527
  */
3520
- namespace?: string;
3528
+ namespace?: string | undefined;
3521
3529
  /**
3522
3530
  * <p>The name of the Kubernetes service account inside the cluster to associate the IAM credentials with.</p>
3523
3531
  * @public
3524
3532
  */
3525
- serviceAccount?: string;
3533
+ serviceAccount?: string | undefined;
3526
3534
  /**
3527
3535
  * <p>The Amazon Resource Name (ARN) of the IAM role to associate with the service account. The EKS Pod Identity
3528
3536
  * agent manages credentials to assume this role for applications in the containers in the
3529
3537
  * pods that use this service account.</p>
3530
3538
  * @public
3531
3539
  */
3532
- roleArn?: string;
3540
+ roleArn?: string | undefined;
3533
3541
  /**
3534
3542
  * <p>The Amazon Resource Name (ARN) of the association.</p>
3535
3543
  * @public
3536
3544
  */
3537
- associationArn?: string;
3545
+ associationArn?: string | undefined;
3538
3546
  /**
3539
3547
  * <p>The ID of the association.</p>
3540
3548
  * @public
3541
3549
  */
3542
- associationId?: string;
3550
+ associationId?: string | undefined;
3543
3551
  /**
3544
3552
  * <p>Metadata that assists with categorization and organization.
3545
3553
  * Each tag consists of a key and an optional value. You define both. Tags don't
@@ -3577,22 +3585,22 @@ export interface PodIdentityAssociation {
3577
3585
  * </ul>
3578
3586
  * @public
3579
3587
  */
3580
- tags?: Record<string, string>;
3588
+ tags?: Record<string, string> | undefined;
3581
3589
  /**
3582
3590
  * <p>The timestamp that the association was created at.</p>
3583
3591
  * @public
3584
3592
  */
3585
- createdAt?: Date;
3593
+ createdAt?: Date | undefined;
3586
3594
  /**
3587
3595
  * <p>The most recent timestamp that the association was modified at</p>
3588
3596
  * @public
3589
3597
  */
3590
- modifiedAt?: Date;
3598
+ modifiedAt?: Date | undefined;
3591
3599
  /**
3592
3600
  * <p>If defined, the Pod Identity Association is owned by an Amazon EKS Addon.</p>
3593
3601
  * @public
3594
3602
  */
3595
- ownerArn?: string;
3603
+ ownerArn?: string | undefined;
3596
3604
  }
3597
3605
  /**
3598
3606
  * @public
@@ -3604,7 +3612,7 @@ export interface CreatePodIdentityAssociationResponse {
3604
3612
  * actions to manage the association.</p>
3605
3613
  * @public
3606
3614
  */
3607
- association?: PodIdentityAssociation;
3615
+ association?: PodIdentityAssociation | undefined;
3608
3616
  }
3609
3617
  /**
3610
3618
  * @public
@@ -3647,7 +3655,7 @@ export interface DeleteAddonRequest {
3647
3655
  * account is associated with the add-on, it isn't removed.</p>
3648
3656
  * @public
3649
3657
  */
3650
- preserve?: boolean;
3658
+ preserve?: boolean | undefined;
3651
3659
  }
3652
3660
  /**
3653
3661
  * @public
@@ -3658,7 +3666,7 @@ export interface DeleteAddonResponse {
3658
3666
  * the <i>Amazon EKS User Guide</i>.</p>
3659
3667
  * @public
3660
3668
  */
3661
- addon?: Addon;
3669
+ addon?: Addon | undefined;
3662
3670
  }
3663
3671
  /**
3664
3672
  * @public
@@ -3678,7 +3686,7 @@ export interface DeleteClusterResponse {
3678
3686
  * <p>The full description of the cluster to delete.</p>
3679
3687
  * @public
3680
3688
  */
3681
- cluster?: Cluster;
3689
+ cluster?: Cluster | undefined;
3682
3690
  }
3683
3691
  /**
3684
3692
  * @public
@@ -3698,7 +3706,7 @@ export interface DeleteEksAnywhereSubscriptionResponse {
3698
3706
  * <p>The full description of the subscription to be deleted.</p>
3699
3707
  * @public
3700
3708
  */
3701
- subscription?: EksAnywhereSubscription;
3709
+ subscription?: EksAnywhereSubscription | undefined;
3702
3710
  }
3703
3711
  /**
3704
3712
  * @public
@@ -3723,7 +3731,7 @@ export interface DeleteFargateProfileResponse {
3723
3731
  * <p>The deleted Fargate profile.</p>
3724
3732
  * @public
3725
3733
  */
3726
- fargateProfile?: FargateProfile;
3734
+ fargateProfile?: FargateProfile | undefined;
3727
3735
  }
3728
3736
  /**
3729
3737
  * @public
@@ -3748,7 +3756,7 @@ export interface DeleteNodegroupResponse {
3748
3756
  * <p>The full description of your deleted node group.</p>
3749
3757
  * @public
3750
3758
  */
3751
- nodegroup?: Nodegroup;
3759
+ nodegroup?: Nodegroup | undefined;
3752
3760
  }
3753
3761
  /**
3754
3762
  * @public
@@ -3773,7 +3781,7 @@ export interface DeletePodIdentityAssociationResponse {
3773
3781
  * <p>The full description of the EKS Pod Identity association that was deleted.</p>
3774
3782
  * @public
3775
3783
  */
3776
- association?: PodIdentityAssociation;
3784
+ association?: PodIdentityAssociation | undefined;
3777
3785
  }
3778
3786
  /**
3779
3787
  * @public
@@ -3793,7 +3801,7 @@ export interface DeregisterClusterResponse {
3793
3801
  * <p>An object representing an Amazon EKS cluster.</p>
3794
3802
  * @public
3795
3803
  */
3796
- cluster?: Cluster;
3804
+ cluster?: Cluster | undefined;
3797
3805
  }
3798
3806
  /**
3799
3807
  * @public
@@ -3818,7 +3826,7 @@ export interface DescribeAccessEntryResponse {
3818
3826
  * <p>Information about the access entry.</p>
3819
3827
  * @public
3820
3828
  */
3821
- accessEntry?: AccessEntry;
3829
+ accessEntry?: AccessEntry | undefined;
3822
3830
  }
3823
3831
  /**
3824
3832
  * @public
@@ -3846,7 +3854,7 @@ export interface DescribeAddonResponse {
3846
3854
  * the <i>Amazon EKS User Guide</i>.</p>
3847
3855
  * @public
3848
3856
  */
3849
- addon?: Addon;
3857
+ addon?: Addon | undefined;
3850
3858
  }
3851
3859
  /**
3852
3860
  * @public
@@ -3874,25 +3882,25 @@ export interface DescribeAddonConfigurationResponse {
3874
3882
  * <p>The name of the add-on.</p>
3875
3883
  * @public
3876
3884
  */
3877
- addonName?: string;
3885
+ addonName?: string | undefined;
3878
3886
  /**
3879
3887
  * <p>The version of the add-on. The version must match one of the versions returned by <a href="https://docs.aws.amazon.com/eks/latest/APIReference/API_DescribeAddonVersions.html">
3880
3888
  * <code>DescribeAddonVersions</code>
3881
3889
  * </a>.</p>
3882
3890
  * @public
3883
3891
  */
3884
- addonVersion?: string;
3892
+ addonVersion?: string | undefined;
3885
3893
  /**
3886
3894
  * <p>A JSON schema that's used to validate the configuration values you provide when an
3887
3895
  * add-on is created or updated.</p>
3888
3896
  * @public
3889
3897
  */
3890
- configurationSchema?: string;
3898
+ configurationSchema?: string | undefined;
3891
3899
  /**
3892
3900
  * <p>The Kubernetes service account name used by the addon, and any suggested IAM policies. Use this information to create an IAM Role for the Addon.</p>
3893
3901
  * @public
3894
3902
  */
3895
- podIdentityConfiguration?: AddonPodIdentityConfiguration[];
3903
+ podIdentityConfiguration?: AddonPodIdentityConfiguration[] | undefined;
3896
3904
  }
3897
3905
  /**
3898
3906
  * @public
@@ -3902,7 +3910,7 @@ export interface DescribeAddonVersionsRequest {
3902
3910
  * <p>The Kubernetes versions that you can use the add-on with.</p>
3903
3911
  * @public
3904
3912
  */
3905
- kubernetesVersion?: string;
3913
+ kubernetesVersion?: string | undefined;
3906
3914
  /**
3907
3915
  * <p>The maximum number of results, returned in paginated output. You receive
3908
3916
  * <code>maxResults</code> in a single page, along with a <code>nextToken</code>
@@ -3913,7 +3921,7 @@ export interface DescribeAddonVersionsRequest {
3913
3921
  * returned.</p>
3914
3922
  * @public
3915
3923
  */
3916
- maxResults?: number;
3924
+ maxResults?: number | undefined;
3917
3925
  /**
3918
3926
  * <p>The <code>nextToken</code> value returned from a previous paginated request, where <code>maxResults</code> was used and
3919
3927
  * the results exceeded the value of that parameter. Pagination continues from the end of
@@ -3924,32 +3932,32 @@ export interface DescribeAddonVersionsRequest {
3924
3932
  * </note>
3925
3933
  * @public
3926
3934
  */
3927
- nextToken?: string;
3935
+ nextToken?: string | undefined;
3928
3936
  /**
3929
3937
  * <p>The name of the add-on. The name must match one of the names returned by <a href="https://docs.aws.amazon.com/eks/latest/APIReference/API_ListAddons.html">
3930
3938
  * <code>ListAddons</code>
3931
3939
  * </a>.</p>
3932
3940
  * @public
3933
3941
  */
3934
- addonName?: string;
3942
+ addonName?: string | undefined;
3935
3943
  /**
3936
3944
  * <p>The type of the add-on. For valid <code>types</code>, don't specify a value for this
3937
3945
  * property.</p>
3938
3946
  * @public
3939
3947
  */
3940
- types?: string[];
3948
+ types?: string[] | undefined;
3941
3949
  /**
3942
3950
  * <p>The publisher of the add-on. For valid <code>publishers</code>, don't specify a value
3943
3951
  * for this property.</p>
3944
3952
  * @public
3945
3953
  */
3946
- publishers?: string[];
3954
+ publishers?: string[] | undefined;
3947
3955
  /**
3948
3956
  * <p>The owner of the add-on. For valid <code>owners</code>, don't specify a value for this
3949
3957
  * property.</p>
3950
3958
  * @public
3951
3959
  */
3952
- owners?: string[];
3960
+ owners?: string[] | undefined;
3953
3961
  }
3954
3962
  /**
3955
3963
  * @public
@@ -3960,7 +3968,7 @@ export interface DescribeAddonVersionsResponse {
3960
3968
  * properties.</p>
3961
3969
  * @public
3962
3970
  */
3963
- addons?: AddonInfo[];
3971
+ addons?: AddonInfo[] | undefined;
3964
3972
  /**
3965
3973
  * <p>The <code>nextToken</code> value to include in a future
3966
3974
  * <code>DescribeAddonVersions</code> request. When the results of a
@@ -3973,7 +3981,7 @@ export interface DescribeAddonVersionsResponse {
3973
3981
  * </note>
3974
3982
  * @public
3975
3983
  */
3976
- nextToken?: string;
3984
+ nextToken?: string | undefined;
3977
3985
  }
3978
3986
  /**
3979
3987
  * @public
@@ -3993,7 +4001,7 @@ export interface DescribeClusterResponse {
3993
4001
  * <p>The full description of your specified cluster.</p>
3994
4002
  * @public
3995
4003
  */
3996
- cluster?: Cluster;
4004
+ cluster?: Cluster | undefined;
3997
4005
  }
3998
4006
  /**
3999
4007
  * @public
@@ -4013,7 +4021,7 @@ export interface DescribeEksAnywhereSubscriptionResponse {
4013
4021
  * <p>The full description of the subscription.</p>
4014
4022
  * @public
4015
4023
  */
4016
- subscription?: EksAnywhereSubscription;
4024
+ subscription?: EksAnywhereSubscription | undefined;
4017
4025
  }
4018
4026
  /**
4019
4027
  * @public
@@ -4038,7 +4046,7 @@ export interface DescribeFargateProfileResponse {
4038
4046
  * <p>The full description of your Fargate profile.</p>
4039
4047
  * @public
4040
4048
  */
4041
- fargateProfile?: FargateProfile;
4049
+ fargateProfile?: FargateProfile | undefined;
4042
4050
  }
4043
4051
  /**
4044
4052
  * <p>An object representing an identity provider configuration.</p>
@@ -4095,46 +4103,46 @@ export interface OidcIdentityProviderConfig {
4095
4103
  * <p>The name of the configuration.</p>
4096
4104
  * @public
4097
4105
  */
4098
- identityProviderConfigName?: string;
4106
+ identityProviderConfigName?: string | undefined;
4099
4107
  /**
4100
4108
  * <p>The ARN of the configuration.</p>
4101
4109
  * @public
4102
4110
  */
4103
- identityProviderConfigArn?: string;
4111
+ identityProviderConfigArn?: string | undefined;
4104
4112
  /**
4105
4113
  * <p>The name of your cluster.</p>
4106
4114
  * @public
4107
4115
  */
4108
- clusterName?: string;
4116
+ clusterName?: string | undefined;
4109
4117
  /**
4110
4118
  * <p>The URL of the OIDC identity provider that allows the API server to discover public
4111
4119
  * signing keys for verifying tokens.</p>
4112
4120
  * @public
4113
4121
  */
4114
- issuerUrl?: string;
4122
+ issuerUrl?: string | undefined;
4115
4123
  /**
4116
4124
  * <p>This is also known as <i>audience</i>. The ID of the client application
4117
4125
  * that makes authentication requests to the OIDC identity provider.</p>
4118
4126
  * @public
4119
4127
  */
4120
- clientId?: string;
4128
+ clientId?: string | undefined;
4121
4129
  /**
4122
4130
  * <p>The JSON Web token (JWT) claim that is used as the username.</p>
4123
4131
  * @public
4124
4132
  */
4125
- usernameClaim?: string;
4133
+ usernameClaim?: string | undefined;
4126
4134
  /**
4127
4135
  * <p>The prefix that is prepended to username claims to prevent clashes with existing
4128
4136
  * names. The prefix can't contain <code>system:</code>
4129
4137
  * </p>
4130
4138
  * @public
4131
4139
  */
4132
- usernamePrefix?: string;
4140
+ usernamePrefix?: string | undefined;
4133
4141
  /**
4134
4142
  * <p>The JSON web token (JWT) claim that the provider uses to return your groups.</p>
4135
4143
  * @public
4136
4144
  */
4137
- groupsClaim?: string;
4145
+ groupsClaim?: string | undefined;
4138
4146
  /**
4139
4147
  * <p>The prefix that is prepended to group claims to prevent clashes with existing names
4140
4148
  * (such as <code>system:</code> groups). For example, the value<code> oidc:</code> creates
@@ -4143,25 +4151,25 @@ export interface OidcIdentityProviderConfig {
4143
4151
  * </p>
4144
4152
  * @public
4145
4153
  */
4146
- groupsPrefix?: string;
4154
+ groupsPrefix?: string | undefined;
4147
4155
  /**
4148
4156
  * <p>The key-value pairs that describe required claims in the identity token. If set, each
4149
4157
  * claim is verified to be present in the token with a matching value.</p>
4150
4158
  * @public
4151
4159
  */
4152
- requiredClaims?: Record<string, string>;
4160
+ requiredClaims?: Record<string, string> | undefined;
4153
4161
  /**
4154
4162
  * <p>Metadata that assists with categorization and organization.
4155
4163
  * Each tag consists of a key and an optional value. You define both. Tags don't
4156
4164
  * propagate to any other cluster or Amazon Web Services resources.</p>
4157
4165
  * @public
4158
4166
  */
4159
- tags?: Record<string, string>;
4167
+ tags?: Record<string, string> | undefined;
4160
4168
  /**
4161
4169
  * <p>The status of the OIDC identity provider.</p>
4162
4170
  * @public
4163
4171
  */
4164
- status?: ConfigStatus;
4172
+ status?: ConfigStatus | undefined;
4165
4173
  }
4166
4174
  /**
4167
4175
  * <p>The full description of your identity configuration.</p>
@@ -4172,7 +4180,7 @@ export interface IdentityProviderConfigResponse {
4172
4180
  * <p>An object representing an OpenID Connect (OIDC) identity provider configuration.</p>
4173
4181
  * @public
4174
4182
  */
4175
- oidc?: OidcIdentityProviderConfig;
4183
+ oidc?: OidcIdentityProviderConfig | undefined;
4176
4184
  }
4177
4185
  /**
4178
4186
  * @public
@@ -4183,7 +4191,7 @@ export interface DescribeIdentityProviderConfigResponse {
4183
4191
  * configuration.</p>
4184
4192
  * @public
4185
4193
  */
4186
- identityProviderConfig?: IdentityProviderConfigResponse;
4194
+ identityProviderConfig?: IdentityProviderConfigResponse | undefined;
4187
4195
  }
4188
4196
  /**
4189
4197
  * @public
@@ -4220,17 +4228,17 @@ export interface ClientStat {
4220
4228
  * <p>The user agent of the Kubernetes client using the deprecated resource.</p>
4221
4229
  * @public
4222
4230
  */
4223
- userAgent?: string;
4231
+ userAgent?: string | undefined;
4224
4232
  /**
4225
4233
  * <p>The number of requests from the Kubernetes client seen over the last 30 days.</p>
4226
4234
  * @public
4227
4235
  */
4228
- numberOfRequestsLast30Days?: number;
4236
+ numberOfRequestsLast30Days?: number | undefined;
4229
4237
  /**
4230
4238
  * <p>The timestamp of the last request seen from the Kubernetes client.</p>
4231
4239
  * @public
4232
4240
  */
4233
- lastRequestTime?: Date;
4241
+ lastRequestTime?: Date | undefined;
4234
4242
  }
4235
4243
  /**
4236
4244
  * <p>The summary information about deprecated resource usage for an insight check in the
@@ -4242,29 +4250,29 @@ export interface DeprecationDetail {
4242
4250
  * <p>The deprecated version of the resource.</p>
4243
4251
  * @public
4244
4252
  */
4245
- usage?: string;
4253
+ usage?: string | undefined;
4246
4254
  /**
4247
4255
  * <p>The newer version of the resource to migrate to if applicable. </p>
4248
4256
  * @public
4249
4257
  */
4250
- replacedWith?: string;
4258
+ replacedWith?: string | undefined;
4251
4259
  /**
4252
4260
  * <p>The version of the software where the deprecated resource version will stop being
4253
4261
  * served.</p>
4254
4262
  * @public
4255
4263
  */
4256
- stopServingVersion?: string;
4264
+ stopServingVersion?: string | undefined;
4257
4265
  /**
4258
4266
  * <p>The version of the software where the newer resource version became available to
4259
4267
  * migrate to if applicable.</p>
4260
4268
  * @public
4261
4269
  */
4262
- startServingReplacementVersion?: string;
4270
+ startServingReplacementVersion?: string | undefined;
4263
4271
  /**
4264
4272
  * <p>Details about Kubernetes clients using the deprecated resources.</p>
4265
4273
  * @public
4266
4274
  */
4267
- clientStats?: ClientStat[];
4275
+ clientStats?: ClientStat[] | undefined;
4268
4276
  }
4269
4277
  /**
4270
4278
  * <p>Summary information that relates to the category of the insight. Currently only
@@ -4277,7 +4285,7 @@ export interface InsightCategorySpecificSummary {
4277
4285
  * <code>UPGRADE_READINESS</code> category.</p>
4278
4286
  * @public
4279
4287
  */
4280
- deprecationDetails?: DeprecationDetail[];
4288
+ deprecationDetails?: DeprecationDetail[] | undefined;
4281
4289
  }
4282
4290
  /**
4283
4291
  * @public
@@ -4302,12 +4310,12 @@ export interface InsightStatus {
4302
4310
  * <p>The status of the resource.</p>
4303
4311
  * @public
4304
4312
  */
4305
- status?: InsightStatusValue;
4313
+ status?: InsightStatusValue | undefined;
4306
4314
  /**
4307
4315
  * <p>Explanation on the reasoning for the status of the resource. </p>
4308
4316
  * @public
4309
4317
  */
4310
- reason?: string;
4318
+ reason?: string | undefined;
4311
4319
  }
4312
4320
  /**
4313
4321
  * <p>Returns information about the resource being evaluated.</p>
@@ -4318,17 +4326,17 @@ export interface InsightResourceDetail {
4318
4326
  * <p>An object containing more detail on the status of the insight resource.</p>
4319
4327
  * @public
4320
4328
  */
4321
- insightStatus?: InsightStatus;
4329
+ insightStatus?: InsightStatus | undefined;
4322
4330
  /**
4323
4331
  * <p>The Kubernetes resource URI if applicable.</p>
4324
4332
  * @public
4325
4333
  */
4326
- kubernetesResourceUri?: string;
4334
+ kubernetesResourceUri?: string | undefined;
4327
4335
  /**
4328
4336
  * <p>The Amazon Resource Name (ARN) if applicable.</p>
4329
4337
  * @public
4330
4338
  */
4331
- arn?: string;
4339
+ arn?: string | undefined;
4332
4340
  }
4333
4341
  /**
4334
4342
  * <p>A check that provides recommendations to remedy potential upgrade-impacting
@@ -4340,65 +4348,65 @@ export interface Insight {
4340
4348
  * <p>The ID of the insight.</p>
4341
4349
  * @public
4342
4350
  */
4343
- id?: string;
4351
+ id?: string | undefined;
4344
4352
  /**
4345
4353
  * <p>The name of the insight.</p>
4346
4354
  * @public
4347
4355
  */
4348
- name?: string;
4356
+ name?: string | undefined;
4349
4357
  /**
4350
4358
  * <p>The category of the insight.</p>
4351
4359
  * @public
4352
4360
  */
4353
- category?: Category;
4361
+ category?: Category | undefined;
4354
4362
  /**
4355
4363
  * <p>The Kubernetes minor version associated with an insight if applicable.</p>
4356
4364
  * @public
4357
4365
  */
4358
- kubernetesVersion?: string;
4366
+ kubernetesVersion?: string | undefined;
4359
4367
  /**
4360
4368
  * <p>The time Amazon EKS last successfully completed a refresh of this insight check on the
4361
4369
  * cluster.</p>
4362
4370
  * @public
4363
4371
  */
4364
- lastRefreshTime?: Date;
4372
+ lastRefreshTime?: Date | undefined;
4365
4373
  /**
4366
4374
  * <p>The time the status of the insight last changed.</p>
4367
4375
  * @public
4368
4376
  */
4369
- lastTransitionTime?: Date;
4377
+ lastTransitionTime?: Date | undefined;
4370
4378
  /**
4371
4379
  * <p>The description of the insight which includes alert criteria, remediation
4372
4380
  * recommendation, and additional resources (contains Markdown).</p>
4373
4381
  * @public
4374
4382
  */
4375
- description?: string;
4383
+ description?: string | undefined;
4376
4384
  /**
4377
4385
  * <p>An object containing more detail on the status of the insight resource.</p>
4378
4386
  * @public
4379
4387
  */
4380
- insightStatus?: InsightStatus;
4388
+ insightStatus?: InsightStatus | undefined;
4381
4389
  /**
4382
4390
  * <p>A summary of how to remediate the finding of this insight if applicable. </p>
4383
4391
  * @public
4384
4392
  */
4385
- recommendation?: string;
4393
+ recommendation?: string | undefined;
4386
4394
  /**
4387
4395
  * <p>Links to sources that provide additional context on the insight.</p>
4388
4396
  * @public
4389
4397
  */
4390
- additionalInfo?: Record<string, string>;
4398
+ additionalInfo?: Record<string, string> | undefined;
4391
4399
  /**
4392
4400
  * <p>The details about each resource listed in the insight check result.</p>
4393
4401
  * @public
4394
4402
  */
4395
- resources?: InsightResourceDetail[];
4403
+ resources?: InsightResourceDetail[] | undefined;
4396
4404
  /**
4397
4405
  * <p>Summary information that relates to the category of the insight. Currently only
4398
4406
  * returned with certain insights having category <code>UPGRADE_READINESS</code>.</p>
4399
4407
  * @public
4400
4408
  */
4401
- categorySpecificSummary?: InsightCategorySpecificSummary;
4409
+ categorySpecificSummary?: InsightCategorySpecificSummary | undefined;
4402
4410
  }
4403
4411
  /**
4404
4412
  * @public
@@ -4408,7 +4416,7 @@ export interface DescribeInsightResponse {
4408
4416
  * <p>The full description of the insight.</p>
4409
4417
  * @public
4410
4418
  */
4411
- insight?: Insight;
4419
+ insight?: Insight | undefined;
4412
4420
  }
4413
4421
  /**
4414
4422
  * @public
@@ -4433,7 +4441,7 @@ export interface DescribeNodegroupResponse {
4433
4441
  * <p>The full description of your node group.</p>
4434
4442
  * @public
4435
4443
  */
4436
- nodegroup?: Nodegroup;
4444
+ nodegroup?: Nodegroup | undefined;
4437
4445
  }
4438
4446
  /**
4439
4447
  * @public
@@ -4458,7 +4466,7 @@ export interface DescribePodIdentityAssociationResponse {
4458
4466
  * <p>The full description of the EKS Pod Identity association.</p>
4459
4467
  * @public
4460
4468
  */
4461
- association?: PodIdentityAssociation;
4469
+ association?: PodIdentityAssociation | undefined;
4462
4470
  }
4463
4471
  /**
4464
4472
  * <p>Describes an update request.</p>
@@ -4480,14 +4488,14 @@ export interface DescribeUpdateRequest {
4480
4488
  * parameter is required if the update is a node group update.</p>
4481
4489
  * @public
4482
4490
  */
4483
- nodegroupName?: string;
4491
+ nodegroupName?: string | undefined;
4484
4492
  /**
4485
4493
  * <p>The name of the add-on. The name must match one of the names returned by <a href="https://docs.aws.amazon.com/eks/latest/APIReference/API_ListAddons.html">
4486
4494
  * <code>ListAddons</code>
4487
4495
  * </a>. This parameter is required if the update is an add-on update.</p>
4488
4496
  * @public
4489
4497
  */
4490
- addonName?: string;
4498
+ addonName?: string | undefined;
4491
4499
  }
4492
4500
  /**
4493
4501
  * @public
@@ -4497,7 +4505,7 @@ export interface DescribeUpdateResponse {
4497
4505
  * <p>The full description of the specified update.</p>
4498
4506
  * @public
4499
4507
  */
4500
- update?: Update;
4508
+ update?: Update | undefined;
4501
4509
  }
4502
4510
  /**
4503
4511
  * @public
@@ -4544,7 +4552,7 @@ export interface DisassociateIdentityProviderConfigRequest {
4544
4552
  * the idempotency of the request.</p>
4545
4553
  * @public
4546
4554
  */
4547
- clientRequestToken?: string;
4555
+ clientRequestToken?: string | undefined;
4548
4556
  }
4549
4557
  /**
4550
4558
  * @public
@@ -4554,7 +4562,7 @@ export interface DisassociateIdentityProviderConfigResponse {
4554
4562
  * <p>An object representing an asynchronous update.</p>
4555
4563
  * @public
4556
4564
  */
4557
- update?: Update;
4565
+ update?: Update | undefined;
4558
4566
  }
4559
4567
  /**
4560
4568
  * @public
@@ -4571,7 +4579,7 @@ export interface ListAccessEntriesRequest {
4571
4579
  * available policy ARNs, use <code>ListAccessPolicies</code>.</p>
4572
4580
  * @public
4573
4581
  */
4574
- associatedPolicyArn?: string;
4582
+ associatedPolicyArn?: string | undefined;
4575
4583
  /**
4576
4584
  * <p>The maximum number of results, returned in paginated output. You receive
4577
4585
  * <code>maxResults</code> in a single page, along with a <code>nextToken</code>
@@ -4582,7 +4590,7 @@ export interface ListAccessEntriesRequest {
4582
4590
  * returned.</p>
4583
4591
  * @public
4584
4592
  */
4585
- maxResults?: number;
4593
+ maxResults?: number | undefined;
4586
4594
  /**
4587
4595
  * <p>The <code>nextToken</code> value returned from a previous paginated request, where <code>maxResults</code> was used and
4588
4596
  * the results exceeded the value of that parameter. Pagination continues from the end of
@@ -4593,7 +4601,7 @@ export interface ListAccessEntriesRequest {
4593
4601
  * </note>
4594
4602
  * @public
4595
4603
  */
4596
- nextToken?: string;
4604
+ nextToken?: string | undefined;
4597
4605
  }
4598
4606
  /**
4599
4607
  * @public
@@ -4603,7 +4611,7 @@ export interface ListAccessEntriesResponse {
4603
4611
  * <p>The list of access entries that exist for the cluster.</p>
4604
4612
  * @public
4605
4613
  */
4606
- accessEntries?: string[];
4614
+ accessEntries?: string[] | undefined;
4607
4615
  /**
4608
4616
  * <p>The <code>nextToken</code> value returned from a previous paginated request, where <code>maxResults</code> was used and
4609
4617
  * the results exceeded the value of that parameter. Pagination continues from the end of
@@ -4614,7 +4622,7 @@ export interface ListAccessEntriesResponse {
4614
4622
  * </note>
4615
4623
  * @public
4616
4624
  */
4617
- nextToken?: string;
4625
+ nextToken?: string | undefined;
4618
4626
  }
4619
4627
  /**
4620
4628
  * @public
@@ -4630,7 +4638,7 @@ export interface ListAccessPoliciesRequest {
4630
4638
  * returned.</p>
4631
4639
  * @public
4632
4640
  */
4633
- maxResults?: number;
4641
+ maxResults?: number | undefined;
4634
4642
  /**
4635
4643
  * <p>The <code>nextToken</code> value returned from a previous paginated request, where <code>maxResults</code> was used and
4636
4644
  * the results exceeded the value of that parameter. Pagination continues from the end of
@@ -4641,7 +4649,7 @@ export interface ListAccessPoliciesRequest {
4641
4649
  * </note>
4642
4650
  * @public
4643
4651
  */
4644
- nextToken?: string;
4652
+ nextToken?: string | undefined;
4645
4653
  }
4646
4654
  /**
4647
4655
  * @public
@@ -4653,7 +4661,7 @@ export interface ListAccessPoliciesResponse {
4653
4661
  * policy permissions</a> in the <i>Amazon EKS User Guide</i>.</p>
4654
4662
  * @public
4655
4663
  */
4656
- accessPolicies?: AccessPolicy[];
4664
+ accessPolicies?: AccessPolicy[] | undefined;
4657
4665
  /**
4658
4666
  * <p>The <code>nextToken</code> value returned from a previous paginated request, where <code>maxResults</code> was used and
4659
4667
  * the results exceeded the value of that parameter. Pagination continues from the end of
@@ -4664,7 +4672,7 @@ export interface ListAccessPoliciesResponse {
4664
4672
  * </note>
4665
4673
  * @public
4666
4674
  */
4667
- nextToken?: string;
4675
+ nextToken?: string | undefined;
4668
4676
  }
4669
4677
  /**
4670
4678
  * @public
@@ -4685,7 +4693,7 @@ export interface ListAddonsRequest {
4685
4693
  * returned.</p>
4686
4694
  * @public
4687
4695
  */
4688
- maxResults?: number;
4696
+ maxResults?: number | undefined;
4689
4697
  /**
4690
4698
  * <p>The <code>nextToken</code> value returned from a previous paginated request, where <code>maxResults</code> was used and
4691
4699
  * the results exceeded the value of that parameter. Pagination continues from the end of
@@ -4696,7 +4704,7 @@ export interface ListAddonsRequest {
4696
4704
  * </note>
4697
4705
  * @public
4698
4706
  */
4699
- nextToken?: string;
4707
+ nextToken?: string | undefined;
4700
4708
  }
4701
4709
  /**
4702
4710
  * @public
@@ -4706,7 +4714,7 @@ export interface ListAddonsResponse {
4706
4714
  * <p>A list of installed add-ons.</p>
4707
4715
  * @public
4708
4716
  */
4709
- addons?: string[];
4717
+ addons?: string[] | undefined;
4710
4718
  /**
4711
4719
  * <p>The <code>nextToken</code> value to include in a future <code>ListAddons</code>
4712
4720
  * request. When the results of a <code>ListAddons</code> request exceed
@@ -4719,7 +4727,7 @@ export interface ListAddonsResponse {
4719
4727
  * </note>
4720
4728
  * @public
4721
4729
  */
4722
- nextToken?: string;
4730
+ nextToken?: string | undefined;
4723
4731
  }
4724
4732
  /**
4725
4733
  * @public
@@ -4745,7 +4753,7 @@ export interface ListAssociatedAccessPoliciesRequest {
4745
4753
  * returned.</p>
4746
4754
  * @public
4747
4755
  */
4748
- maxResults?: number;
4756
+ maxResults?: number | undefined;
4749
4757
  /**
4750
4758
  * <p>The <code>nextToken</code> value returned from a previous paginated request, where <code>maxResults</code> was used and
4751
4759
  * the results exceeded the value of that parameter. Pagination continues from the end of
@@ -4756,7 +4764,7 @@ export interface ListAssociatedAccessPoliciesRequest {
4756
4764
  * </note>
4757
4765
  * @public
4758
4766
  */
4759
- nextToken?: string;
4767
+ nextToken?: string | undefined;
4760
4768
  }
4761
4769
  /**
4762
4770
  * @public
@@ -4766,12 +4774,12 @@ export interface ListAssociatedAccessPoliciesResponse {
4766
4774
  * <p>The name of your cluster.</p>
4767
4775
  * @public
4768
4776
  */
4769
- clusterName?: string;
4777
+ clusterName?: string | undefined;
4770
4778
  /**
4771
4779
  * <p>The ARN of the IAM principal for the <code>AccessEntry</code>.</p>
4772
4780
  * @public
4773
4781
  */
4774
- principalArn?: string;
4782
+ principalArn?: string | undefined;
4775
4783
  /**
4776
4784
  * <p>The <code>nextToken</code> value returned from a previous paginated request, where <code>maxResults</code> was used and
4777
4785
  * the results exceeded the value of that parameter. Pagination continues from the end of
@@ -4782,12 +4790,12 @@ export interface ListAssociatedAccessPoliciesResponse {
4782
4790
  * </note>
4783
4791
  * @public
4784
4792
  */
4785
- nextToken?: string;
4793
+ nextToken?: string | undefined;
4786
4794
  /**
4787
4795
  * <p>The list of access policies associated with the access entry.</p>
4788
4796
  * @public
4789
4797
  */
4790
- associatedAccessPolicies?: AssociatedAccessPolicy[];
4798
+ associatedAccessPolicies?: AssociatedAccessPolicy[] | undefined;
4791
4799
  }
4792
4800
  /**
4793
4801
  * @public
@@ -4803,7 +4811,7 @@ export interface ListClustersRequest {
4803
4811
  * returned.</p>
4804
4812
  * @public
4805
4813
  */
4806
- maxResults?: number;
4814
+ maxResults?: number | undefined;
4807
4815
  /**
4808
4816
  * <p>The <code>nextToken</code> value returned from a previous paginated request, where <code>maxResults</code> was used and
4809
4817
  * the results exceeded the value of that parameter. Pagination continues from the end of
@@ -4814,7 +4822,7 @@ export interface ListClustersRequest {
4814
4822
  * </note>
4815
4823
  * @public
4816
4824
  */
4817
- nextToken?: string;
4825
+ nextToken?: string | undefined;
4818
4826
  /**
4819
4827
  * <p>Indicates whether external clusters are included in the returned list. Use
4820
4828
  * '<code>all</code>' to return <a href="https://docs.aws.amazon.com/eks/latest/userguide/eks-connector.html">https://docs.aws.amazon.com/eks/latest/userguide/eks-connector.html</a>connected clusters, or blank to
@@ -4822,7 +4830,7 @@ export interface ListClustersRequest {
4822
4830
  * otherwise an error occurs.</p>
4823
4831
  * @public
4824
4832
  */
4825
- include?: string[];
4833
+ include?: string[] | undefined;
4826
4834
  }
4827
4835
  /**
4828
4836
  * @public
@@ -4832,7 +4840,7 @@ export interface ListClustersResponse {
4832
4840
  * <p>A list of all of the clusters for your account in the specified Amazon Web Services Region.</p>
4833
4841
  * @public
4834
4842
  */
4835
- clusters?: string[];
4843
+ clusters?: string[] | undefined;
4836
4844
  /**
4837
4845
  * <p>The <code>nextToken</code> value returned from a previous paginated request, where <code>maxResults</code> was used and
4838
4846
  * the results exceeded the value of that parameter. Pagination continues from the end of
@@ -4843,7 +4851,7 @@ export interface ListClustersResponse {
4843
4851
  * </note>
4844
4852
  * @public
4845
4853
  */
4846
- nextToken?: string;
4854
+ nextToken?: string | undefined;
4847
4855
  }
4848
4856
  /**
4849
4857
  * @public
@@ -4875,7 +4883,7 @@ export interface ListEksAnywhereSubscriptionsRequest {
4875
4883
  * returns up to 10 results and a nextToken value if applicable.</p>
4876
4884
  * @public
4877
4885
  */
4878
- maxResults?: number;
4886
+ maxResults?: number | undefined;
4879
4887
  /**
4880
4888
  * <p>The <code>nextToken</code> value returned from a previous paginated
4881
4889
  * <code>ListEksAnywhereSubscriptions</code> request where <code>maxResults</code> was
@@ -4883,12 +4891,12 @@ export interface ListEksAnywhereSubscriptionsRequest {
4883
4891
  * end of the previous results that returned the <code>nextToken</code> value.</p>
4884
4892
  * @public
4885
4893
  */
4886
- nextToken?: string;
4894
+ nextToken?: string | undefined;
4887
4895
  /**
4888
4896
  * <p>An array of subscription statuses to filter on.</p>
4889
4897
  * @public
4890
4898
  */
4891
- includeStatus?: EksAnywhereSubscriptionStatus[];
4899
+ includeStatus?: EksAnywhereSubscriptionStatus[] | undefined;
4892
4900
  }
4893
4901
  /**
4894
4902
  * @public
@@ -4899,7 +4907,7 @@ export interface ListEksAnywhereSubscriptionsResponse {
4899
4907
  * paginated by nextToken and maxResults.</p>
4900
4908
  * @public
4901
4909
  */
4902
- subscriptions?: EksAnywhereSubscription[];
4910
+ subscriptions?: EksAnywhereSubscription[] | undefined;
4903
4911
  /**
4904
4912
  * <p>The nextToken value to include in a future ListEksAnywhereSubscriptions request. When
4905
4913
  * the results of a ListEksAnywhereSubscriptions request exceed maxResults, you can use
@@ -4907,7 +4915,7 @@ export interface ListEksAnywhereSubscriptionsResponse {
4907
4915
  * more results to return.</p>
4908
4916
  * @public
4909
4917
  */
4910
- nextToken?: string;
4918
+ nextToken?: string | undefined;
4911
4919
  }
4912
4920
  /**
4913
4921
  * @public
@@ -4928,7 +4936,7 @@ export interface ListFargateProfilesRequest {
4928
4936
  * returned.</p>
4929
4937
  * @public
4930
4938
  */
4931
- maxResults?: number;
4939
+ maxResults?: number | undefined;
4932
4940
  /**
4933
4941
  * <p>The <code>nextToken</code> value returned from a previous paginated request, where <code>maxResults</code> was used and
4934
4942
  * the results exceeded the value of that parameter. Pagination continues from the end of
@@ -4939,7 +4947,7 @@ export interface ListFargateProfilesRequest {
4939
4947
  * </note>
4940
4948
  * @public
4941
4949
  */
4942
- nextToken?: string;
4950
+ nextToken?: string | undefined;
4943
4951
  }
4944
4952
  /**
4945
4953
  * @public
@@ -4950,7 +4958,7 @@ export interface ListFargateProfilesResponse {
4950
4958
  * cluster.</p>
4951
4959
  * @public
4952
4960
  */
4953
- fargateProfileNames?: string[];
4961
+ fargateProfileNames?: string[] | undefined;
4954
4962
  /**
4955
4963
  * <p>The <code>nextToken</code> value returned from a previous paginated request, where <code>maxResults</code> was used and
4956
4964
  * the results exceeded the value of that parameter. Pagination continues from the end of
@@ -4961,7 +4969,7 @@ export interface ListFargateProfilesResponse {
4961
4969
  * </note>
4962
4970
  * @public
4963
4971
  */
4964
- nextToken?: string;
4972
+ nextToken?: string | undefined;
4965
4973
  }
4966
4974
  /**
4967
4975
  * @public
@@ -4982,7 +4990,7 @@ export interface ListIdentityProviderConfigsRequest {
4982
4990
  * returned.</p>
4983
4991
  * @public
4984
4992
  */
4985
- maxResults?: number;
4993
+ maxResults?: number | undefined;
4986
4994
  /**
4987
4995
  * <p>The <code>nextToken</code> value returned from a previous paginated request, where <code>maxResults</code> was used and
4988
4996
  * the results exceeded the value of that parameter. Pagination continues from the end of
@@ -4993,7 +5001,7 @@ export interface ListIdentityProviderConfigsRequest {
4993
5001
  * </note>
4994
5002
  * @public
4995
5003
  */
4996
- nextToken?: string;
5004
+ nextToken?: string | undefined;
4997
5005
  }
4998
5006
  /**
4999
5007
  * @public
@@ -5003,7 +5011,7 @@ export interface ListIdentityProviderConfigsResponse {
5003
5011
  * <p>The identity provider configurations for the cluster.</p>
5004
5012
  * @public
5005
5013
  */
5006
- identityProviderConfigs?: IdentityProviderConfig[];
5014
+ identityProviderConfigs?: IdentityProviderConfig[] | undefined;
5007
5015
  /**
5008
5016
  * <p>The <code>nextToken</code> value to include in a future
5009
5017
  * <code>ListIdentityProviderConfigsResponse</code> request. When the results of a
@@ -5017,7 +5025,7 @@ export interface ListIdentityProviderConfigsResponse {
5017
5025
  * </note>
5018
5026
  * @public
5019
5027
  */
5020
- nextToken?: string;
5028
+ nextToken?: string | undefined;
5021
5029
  }
5022
5030
  /**
5023
5031
  * <p>The criteria to use for the insights.</p>
@@ -5028,17 +5036,17 @@ export interface InsightsFilter {
5028
5036
  * <p>The categories to use to filter insights.</p>
5029
5037
  * @public
5030
5038
  */
5031
- categories?: Category[];
5039
+ categories?: Category[] | undefined;
5032
5040
  /**
5033
5041
  * <p>The Kubernetes versions to use to filter the insights.</p>
5034
5042
  * @public
5035
5043
  */
5036
- kubernetesVersions?: string[];
5044
+ kubernetesVersions?: string[] | undefined;
5037
5045
  /**
5038
5046
  * <p>The statuses to use to filter the insights. </p>
5039
5047
  * @public
5040
5048
  */
5041
- statuses?: InsightStatusValue[];
5049
+ statuses?: InsightStatusValue[] | undefined;
5042
5050
  }
5043
5051
  /**
5044
5052
  * @public
@@ -5054,7 +5062,7 @@ export interface ListInsightsRequest {
5054
5062
  * insights are returned by category, associated Kubernetes version, and status.</p>
5055
5063
  * @public
5056
5064
  */
5057
- filter?: InsightsFilter;
5065
+ filter?: InsightsFilter | undefined;
5058
5066
  /**
5059
5067
  * <p>The maximum number of identity provider configurations returned by
5060
5068
  * <code>ListInsights</code> in paginated output. When you use this parameter,
@@ -5067,7 +5075,7 @@ export interface ListInsightsRequest {
5067
5075
  * applicable.</p>
5068
5076
  * @public
5069
5077
  */
5070
- maxResults?: number;
5078
+ maxResults?: number | undefined;
5071
5079
  /**
5072
5080
  * <p>The <code>nextToken</code> value returned from a previous paginated
5073
5081
  * <code>ListInsights</code> request. When the results of a <code>ListInsights</code>
@@ -5076,7 +5084,7 @@ export interface ListInsightsRequest {
5076
5084
  * return.</p>
5077
5085
  * @public
5078
5086
  */
5079
- nextToken?: string;
5087
+ nextToken?: string | undefined;
5080
5088
  }
5081
5089
  /**
5082
5090
  * <p>The summarized description of the insight.</p>
@@ -5087,44 +5095,44 @@ export interface InsightSummary {
5087
5095
  * <p>The ID of the insight.</p>
5088
5096
  * @public
5089
5097
  */
5090
- id?: string;
5098
+ id?: string | undefined;
5091
5099
  /**
5092
5100
  * <p>The name of the insight.</p>
5093
5101
  * @public
5094
5102
  */
5095
- name?: string;
5103
+ name?: string | undefined;
5096
5104
  /**
5097
5105
  * <p>The category of the insight.</p>
5098
5106
  * @public
5099
5107
  */
5100
- category?: Category;
5108
+ category?: Category | undefined;
5101
5109
  /**
5102
5110
  * <p>The Kubernetes minor version associated with an insight if applicable. </p>
5103
5111
  * @public
5104
5112
  */
5105
- kubernetesVersion?: string;
5113
+ kubernetesVersion?: string | undefined;
5106
5114
  /**
5107
5115
  * <p>The time Amazon EKS last successfully completed a refresh of this insight check on the
5108
5116
  * cluster.</p>
5109
5117
  * @public
5110
5118
  */
5111
- lastRefreshTime?: Date;
5119
+ lastRefreshTime?: Date | undefined;
5112
5120
  /**
5113
5121
  * <p>The time the status of the insight last changed.</p>
5114
5122
  * @public
5115
5123
  */
5116
- lastTransitionTime?: Date;
5124
+ lastTransitionTime?: Date | undefined;
5117
5125
  /**
5118
5126
  * <p>The description of the insight which includes alert criteria, remediation
5119
5127
  * recommendation, and additional resources (contains Markdown).</p>
5120
5128
  * @public
5121
5129
  */
5122
- description?: string;
5130
+ description?: string | undefined;
5123
5131
  /**
5124
5132
  * <p>An object containing more detail on the status of the insight.</p>
5125
5133
  * @public
5126
5134
  */
5127
- insightStatus?: InsightStatus;
5135
+ insightStatus?: InsightStatus | undefined;
5128
5136
  }
5129
5137
  /**
5130
5138
  * @public
@@ -5134,7 +5142,7 @@ export interface ListInsightsResponse {
5134
5142
  * <p>The returned list of insights.</p>
5135
5143
  * @public
5136
5144
  */
5137
- insights?: InsightSummary[];
5145
+ insights?: InsightSummary[] | undefined;
5138
5146
  /**
5139
5147
  * <p>The <code>nextToken</code> value to include in a future <code>ListInsights</code>
5140
5148
  * request. When the results of a <code>ListInsights</code> request exceed
@@ -5143,7 +5151,7 @@ export interface ListInsightsResponse {
5143
5151
  * return.</p>
5144
5152
  * @public
5145
5153
  */
5146
- nextToken?: string;
5154
+ nextToken?: string | undefined;
5147
5155
  }
5148
5156
  /**
5149
5157
  * @public
@@ -5164,7 +5172,7 @@ export interface ListNodegroupsRequest {
5164
5172
  * returned.</p>
5165
5173
  * @public
5166
5174
  */
5167
- maxResults?: number;
5175
+ maxResults?: number | undefined;
5168
5176
  /**
5169
5177
  * <p>The <code>nextToken</code> value returned from a previous paginated request, where <code>maxResults</code> was used and
5170
5178
  * the results exceeded the value of that parameter. Pagination continues from the end of
@@ -5175,7 +5183,7 @@ export interface ListNodegroupsRequest {
5175
5183
  * </note>
5176
5184
  * @public
5177
5185
  */
5178
- nextToken?: string;
5186
+ nextToken?: string | undefined;
5179
5187
  }
5180
5188
  /**
5181
5189
  * @public
@@ -5185,7 +5193,7 @@ export interface ListNodegroupsResponse {
5185
5193
  * <p>A list of all of the node groups associated with the specified cluster.</p>
5186
5194
  * @public
5187
5195
  */
5188
- nodegroups?: string[];
5196
+ nodegroups?: string[] | undefined;
5189
5197
  /**
5190
5198
  * <p>The <code>nextToken</code> value returned from a previous paginated request, where <code>maxResults</code> was used and
5191
5199
  * the results exceeded the value of that parameter. Pagination continues from the end of
@@ -5196,7 +5204,7 @@ export interface ListNodegroupsResponse {
5196
5204
  * </note>
5197
5205
  * @public
5198
5206
  */
5199
- nextToken?: string;
5207
+ nextToken?: string | undefined;
5200
5208
  }
5201
5209
  /**
5202
5210
  * @public
@@ -5211,12 +5219,12 @@ export interface ListPodIdentityAssociationsRequest {
5211
5219
  * <p>The name of the Kubernetes namespace inside the cluster that the associations are in.</p>
5212
5220
  * @public
5213
5221
  */
5214
- namespace?: string;
5222
+ namespace?: string | undefined;
5215
5223
  /**
5216
5224
  * <p>The name of the Kubernetes service account that the associations use.</p>
5217
5225
  * @public
5218
5226
  */
5219
- serviceAccount?: string;
5227
+ serviceAccount?: string | undefined;
5220
5228
  /**
5221
5229
  * <p>The maximum number of EKS Pod Identity association results returned by
5222
5230
  * <code>ListPodIdentityAssociations</code> in paginated output. When you use this
@@ -5230,7 +5238,7 @@ export interface ListPodIdentityAssociationsRequest {
5230
5238
  * and a <code>nextToken</code> value if applicable.</p>
5231
5239
  * @public
5232
5240
  */
5233
- maxResults?: number;
5241
+ maxResults?: number | undefined;
5234
5242
  /**
5235
5243
  * <p>The <code>nextToken</code> value returned from a previous paginated
5236
5244
  * <code>ListUpdates</code> request where <code>maxResults</code> was used and the
@@ -5242,7 +5250,7 @@ export interface ListPodIdentityAssociationsRequest {
5242
5250
  * </note>
5243
5251
  * @public
5244
5252
  */
5245
- nextToken?: string;
5253
+ nextToken?: string | undefined;
5246
5254
  }
5247
5255
  /**
5248
5256
  * <p>The summarized description of the association.</p>
@@ -5274,35 +5282,35 @@ export interface PodIdentityAssociationSummary {
5274
5282
  * <p>The name of the cluster that the association is in.</p>
5275
5283
  * @public
5276
5284
  */
5277
- clusterName?: string;
5285
+ clusterName?: string | undefined;
5278
5286
  /**
5279
5287
  * <p>The name of the Kubernetes namespace inside the cluster to create the association in. The
5280
5288
  * service account and the pods that use the service account must be in this
5281
5289
  * namespace.</p>
5282
5290
  * @public
5283
5291
  */
5284
- namespace?: string;
5292
+ namespace?: string | undefined;
5285
5293
  /**
5286
5294
  * <p>The name of the Kubernetes service account inside the cluster to associate the IAM
5287
5295
  * credentials with.</p>
5288
5296
  * @public
5289
5297
  */
5290
- serviceAccount?: string;
5298
+ serviceAccount?: string | undefined;
5291
5299
  /**
5292
5300
  * <p>The Amazon Resource Name (ARN) of the association.</p>
5293
5301
  * @public
5294
5302
  */
5295
- associationArn?: string;
5303
+ associationArn?: string | undefined;
5296
5304
  /**
5297
5305
  * <p>The ID of the association.</p>
5298
5306
  * @public
5299
5307
  */
5300
- associationId?: string;
5308
+ associationId?: string | undefined;
5301
5309
  /**
5302
5310
  * <p>If defined, the Pod Identity Association is owned by an Amazon EKS Addon.</p>
5303
5311
  * @public
5304
5312
  */
5305
- ownerArn?: string;
5313
+ ownerArn?: string | undefined;
5306
5314
  }
5307
5315
  /**
5308
5316
  * @public
@@ -5334,7 +5342,7 @@ export interface ListPodIdentityAssociationsResponse {
5334
5342
  * </ul>
5335
5343
  * @public
5336
5344
  */
5337
- associations?: PodIdentityAssociationSummary[];
5345
+ associations?: PodIdentityAssociationSummary[] | undefined;
5338
5346
  /**
5339
5347
  * <p>The <code>nextToken</code> value to include in a future
5340
5348
  * <code>ListPodIdentityAssociations</code> request. When the results of a
@@ -5347,7 +5355,7 @@ export interface ListPodIdentityAssociationsResponse {
5347
5355
  * </note>
5348
5356
  * @public
5349
5357
  */
5350
- nextToken?: string;
5358
+ nextToken?: string | undefined;
5351
5359
  }
5352
5360
  /**
5353
5361
  * <p>This exception is thrown if the request contains a semantic error. The precise meaning
@@ -5380,7 +5388,7 @@ export interface ListTagsForResourceResponse {
5380
5388
  * <p>The tags for the resource.</p>
5381
5389
  * @public
5382
5390
  */
5383
- tags?: Record<string, string>;
5391
+ tags?: Record<string, string> | undefined;
5384
5392
  }
5385
5393
  /**
5386
5394
  * <p>A service resource associated with the request could not be found. Clients should not
@@ -5408,12 +5416,12 @@ export interface ListUpdatesRequest {
5408
5416
  * <p>The name of the Amazon EKS managed node group to list updates for.</p>
5409
5417
  * @public
5410
5418
  */
5411
- nodegroupName?: string;
5419
+ nodegroupName?: string | undefined;
5412
5420
  /**
5413
5421
  * <p>The names of the installed add-ons that have available updates.</p>
5414
5422
  * @public
5415
5423
  */
5416
- addonName?: string;
5424
+ addonName?: string | undefined;
5417
5425
  /**
5418
5426
  * <p>The <code>nextToken</code> value returned from a previous paginated request, where <code>maxResults</code> was used and
5419
5427
  * the results exceeded the value of that parameter. Pagination continues from the end of
@@ -5424,7 +5432,7 @@ export interface ListUpdatesRequest {
5424
5432
  * </note>
5425
5433
  * @public
5426
5434
  */
5427
- nextToken?: string;
5435
+ nextToken?: string | undefined;
5428
5436
  /**
5429
5437
  * <p>The maximum number of results, returned in paginated output. You receive
5430
5438
  * <code>maxResults</code> in a single page, along with a <code>nextToken</code>
@@ -5435,7 +5443,7 @@ export interface ListUpdatesRequest {
5435
5443
  * returned.</p>
5436
5444
  * @public
5437
5445
  */
5438
- maxResults?: number;
5446
+ maxResults?: number | undefined;
5439
5447
  }
5440
5448
  /**
5441
5449
  * @public
@@ -5445,7 +5453,7 @@ export interface ListUpdatesResponse {
5445
5453
  * <p>A list of all the updates for the specified cluster and Region.</p>
5446
5454
  * @public
5447
5455
  */
5448
- updateIds?: string[];
5456
+ updateIds?: string[] | undefined;
5449
5457
  /**
5450
5458
  * <p>The <code>nextToken</code> value returned from a previous paginated request, where <code>maxResults</code> was used and
5451
5459
  * the results exceeded the value of that parameter. Pagination continues from the end of
@@ -5456,7 +5464,7 @@ export interface ListUpdatesResponse {
5456
5464
  * </note>
5457
5465
  * @public
5458
5466
  */
5459
- nextToken?: string;
5467
+ nextToken?: string | undefined;
5460
5468
  }
5461
5469
  /**
5462
5470
  * @public
@@ -5513,14 +5521,14 @@ export interface RegisterClusterRequest {
5513
5521
  * the idempotency of the request.</p>
5514
5522
  * @public
5515
5523
  */
5516
- clientRequestToken?: string;
5524
+ clientRequestToken?: string | undefined;
5517
5525
  /**
5518
5526
  * <p>Metadata that assists with categorization and organization.
5519
5527
  * Each tag consists of a key and an optional value. You define both. Tags don't
5520
5528
  * propagate to any other cluster or Amazon Web Services resources.</p>
5521
5529
  * @public
5522
5530
  */
5523
- tags?: Record<string, string>;
5531
+ tags?: Record<string, string> | undefined;
5524
5532
  }
5525
5533
  /**
5526
5534
  * @public
@@ -5530,7 +5538,7 @@ export interface RegisterClusterResponse {
5530
5538
  * <p>An object representing an Amazon EKS cluster.</p>
5531
5539
  * @public
5532
5540
  */
5533
- cluster?: Cluster;
5541
+ cluster?: Cluster | undefined;
5534
5542
  }
5535
5543
  /**
5536
5544
  * <p>Required resources (such as service-linked roles) were created and are still
@@ -5623,13 +5631,13 @@ export interface UpdateAccessEntryRequest {
5623
5631
  * objects that the group names are bound to.</p>
5624
5632
  * @public
5625
5633
  */
5626
- kubernetesGroups?: string[];
5634
+ kubernetesGroups?: string[] | undefined;
5627
5635
  /**
5628
5636
  * <p>A unique, case-sensitive identifier that you provide to ensure
5629
5637
  * the idempotency of the request.</p>
5630
5638
  * @public
5631
5639
  */
5632
- clientRequestToken?: string;
5640
+ clientRequestToken?: string | undefined;
5633
5641
  /**
5634
5642
  * <p>The username to authenticate to Kubernetes with. We recommend not specifying a username and
5635
5643
  * letting Amazon EKS specify it for you. For more information about the value
@@ -5638,7 +5646,7 @@ export interface UpdateAccessEntryRequest {
5638
5646
  * access entries</a> in the <i>Amazon EKS User Guide</i>.</p>
5639
5647
  * @public
5640
5648
  */
5641
- username?: string;
5649
+ username?: string | undefined;
5642
5650
  }
5643
5651
  /**
5644
5652
  * @public
@@ -5648,7 +5656,7 @@ export interface UpdateAccessEntryResponse {
5648
5656
  * <p>The ARN of the IAM principal for the <code>AccessEntry</code>.</p>
5649
5657
  * @public
5650
5658
  */
5651
- accessEntry?: AccessEntry;
5659
+ accessEntry?: AccessEntry | undefined;
5652
5660
  }
5653
5661
  /**
5654
5662
  * @public
@@ -5672,7 +5680,7 @@ export interface UpdateAddonRequest {
5672
5680
  * </a>.</p>
5673
5681
  * @public
5674
5682
  */
5675
- addonVersion?: string;
5683
+ addonVersion?: string | undefined;
5676
5684
  /**
5677
5685
  * <p>The Amazon Resource Name (ARN) of an existing IAM role to bind to the add-on's service account. The role must be assigned the IAM permissions required by the add-on. If you don't specify an existing IAM role, then the add-on uses the
5678
5686
  * permissions assigned to the node IAM role. For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/create-node-role.html">Amazon EKS node IAM role</a> in the <i>Amazon EKS User Guide</i>.</p>
@@ -5684,7 +5692,7 @@ export interface UpdateAddonRequest {
5684
5692
  * </note>
5685
5693
  * @public
5686
5694
  */
5687
- serviceAccountRoleArn?: string;
5695
+ serviceAccountRoleArn?: string | undefined;
5688
5696
  /**
5689
5697
  * <p>How to resolve field value conflicts for an Amazon EKS add-on if you've
5690
5698
  * changed a value from the Amazon EKS default value. Conflicts are handled based
@@ -5711,26 +5719,26 @@ export interface UpdateAddonRequest {
5711
5719
  * </ul>
5712
5720
  * @public
5713
5721
  */
5714
- resolveConflicts?: ResolveConflicts;
5722
+ resolveConflicts?: ResolveConflicts | undefined;
5715
5723
  /**
5716
5724
  * <p>A unique, case-sensitive identifier that you provide to ensure
5717
5725
  * the idempotency of the request.</p>
5718
5726
  * @public
5719
5727
  */
5720
- clientRequestToken?: string;
5728
+ clientRequestToken?: string | undefined;
5721
5729
  /**
5722
5730
  * <p>The set of configuration values for the add-on that's created. The values that you
5723
5731
  * provide are validated against the schema returned by
5724
5732
  * <code>DescribeAddonConfiguration</code>.</p>
5725
5733
  * @public
5726
5734
  */
5727
- configurationValues?: string;
5735
+ configurationValues?: string | undefined;
5728
5736
  /**
5729
5737
  * <p>An array of Pod Identity Assocations to be updated. Each EKS Pod Identity association maps a Kubernetes service account to an IAM Role. If this value is left blank, no change. If an empty array is provided, existing Pod Identity Assocations owned by the Addon are deleted.</p>
5730
5738
  * <p>For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/add-ons-iam.html">Attach an IAM Role to an Amazon EKS add-on using Pod Identity</a> in the EKS User Guide.</p>
5731
5739
  * @public
5732
5740
  */
5733
- podIdentityAssociations?: AddonPodIdentityAssociations[];
5741
+ podIdentityAssociations?: AddonPodIdentityAssociations[] | undefined;
5734
5742
  }
5735
5743
  /**
5736
5744
  * @public
@@ -5740,7 +5748,7 @@ export interface UpdateAddonResponse {
5740
5748
  * <p>An object representing an asynchronous update.</p>
5741
5749
  * @public
5742
5750
  */
5743
- update?: Update;
5751
+ update?: Update | undefined;
5744
5752
  }
5745
5753
  /**
5746
5754
  * <p>The access configuration information for the cluster.</p>
@@ -5751,7 +5759,7 @@ export interface UpdateAccessConfigRequest {
5751
5759
  * <p>The desired authentication mode for the cluster.</p>
5752
5760
  * @public
5753
5761
  */
5754
- authenticationMode?: AuthenticationMode;
5762
+ authenticationMode?: AuthenticationMode | undefined;
5755
5763
  }
5756
5764
  /**
5757
5765
  * @public
@@ -5767,7 +5775,7 @@ export interface UpdateClusterConfigRequest {
5767
5775
  * cluster.</p>
5768
5776
  * @public
5769
5777
  */
5770
- resourcesVpcConfig?: VpcConfigRequest;
5778
+ resourcesVpcConfig?: VpcConfigRequest | undefined;
5771
5779
  /**
5772
5780
  * <p>Enable or disable exporting the Kubernetes control plane logs for your cluster to CloudWatch Logs. By default, cluster control plane logs aren't exported to 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
5773
5781
  * <i>
@@ -5780,23 +5788,23 @@ export interface UpdateClusterConfigRequest {
5780
5788
  * </note>
5781
5789
  * @public
5782
5790
  */
5783
- logging?: Logging;
5791
+ logging?: Logging | undefined;
5784
5792
  /**
5785
5793
  * <p>A unique, case-sensitive identifier that you provide to ensure
5786
5794
  * the idempotency of the request.</p>
5787
5795
  * @public
5788
5796
  */
5789
- clientRequestToken?: string;
5797
+ clientRequestToken?: string | undefined;
5790
5798
  /**
5791
5799
  * <p>The access configuration for the cluster.</p>
5792
5800
  * @public
5793
5801
  */
5794
- accessConfig?: UpdateAccessConfigRequest;
5802
+ accessConfig?: UpdateAccessConfigRequest | undefined;
5795
5803
  /**
5796
5804
  * <p>You can enable or disable extended support for clusters currently on standard support. You cannot disable extended support once it starts. You must enable extended support before your cluster exits standard support.</p>
5797
5805
  * @public
5798
5806
  */
5799
- upgradePolicy?: UpgradePolicyRequest;
5807
+ upgradePolicy?: UpgradePolicyRequest | undefined;
5800
5808
  /**
5801
5809
  * <p>Enable or disable ARC zonal shift for the cluster. If zonal shift is enabled, Amazon Web Services
5802
5810
  * configures zonal autoshift for the cluster.</p>
@@ -5816,7 +5824,7 @@ export interface UpdateClusterConfigRequest {
5816
5824
  * </i>.</p>
5817
5825
  * @public
5818
5826
  */
5819
- zonalShiftConfig?: ZonalShiftConfigRequest;
5827
+ zonalShiftConfig?: ZonalShiftConfigRequest | undefined;
5820
5828
  }
5821
5829
  /**
5822
5830
  * @public
@@ -5826,7 +5834,7 @@ export interface UpdateClusterConfigResponse {
5826
5834
  * <p>An object representing an asynchronous update.</p>
5827
5835
  * @public
5828
5836
  */
5829
- update?: Update;
5837
+ update?: Update | undefined;
5830
5838
  }
5831
5839
  /**
5832
5840
  * @public
@@ -5847,7 +5855,7 @@ export interface UpdateClusterVersionRequest {
5847
5855
  * the idempotency of the request.</p>
5848
5856
  * @public
5849
5857
  */
5850
- clientRequestToken?: string;
5858
+ clientRequestToken?: string | undefined;
5851
5859
  }
5852
5860
  /**
5853
5861
  * @public
@@ -5857,7 +5865,7 @@ export interface UpdateClusterVersionResponse {
5857
5865
  * <p>The full description of the specified update</p>
5858
5866
  * @public
5859
5867
  */
5860
- update?: Update;
5868
+ update?: Update | undefined;
5861
5869
  }
5862
5870
  /**
5863
5871
  * @public
@@ -5877,7 +5885,7 @@ export interface UpdateEksAnywhereSubscriptionRequest {
5877
5885
  * <p>Unique, case-sensitive identifier to ensure the idempotency of the request.</p>
5878
5886
  * @public
5879
5887
  */
5880
- clientRequestToken?: string;
5888
+ clientRequestToken?: string | undefined;
5881
5889
  }
5882
5890
  /**
5883
5891
  * @public
@@ -5887,7 +5895,7 @@ export interface UpdateEksAnywhereSubscriptionResponse {
5887
5895
  * <p>The full description of the updated subscription.</p>
5888
5896
  * @public
5889
5897
  */
5890
- subscription?: EksAnywhereSubscription;
5898
+ subscription?: EksAnywhereSubscription | undefined;
5891
5899
  }
5892
5900
  /**
5893
5901
  * <p>An object representing a Kubernetes <code>label</code> change for a managed node
@@ -5899,12 +5907,12 @@ export interface UpdateLabelsPayload {
5899
5907
  * <p>The Kubernetes <code>labels</code> to add or update.</p>
5900
5908
  * @public
5901
5909
  */
5902
- addOrUpdateLabels?: Record<string, string>;
5910
+ addOrUpdateLabels?: Record<string, string> | undefined;
5903
5911
  /**
5904
5912
  * <p>The Kubernetes <code>labels</code> to remove.</p>
5905
5913
  * @public
5906
5914
  */
5907
- removeLabels?: string[];
5915
+ removeLabels?: string[] | undefined;
5908
5916
  }
5909
5917
  /**
5910
5918
  * <p>An object representing the details of an update to a taints payload. For more
@@ -5917,12 +5925,12 @@ export interface UpdateTaintsPayload {
5917
5925
  * <p>Kubernetes taints to be added or updated.</p>
5918
5926
  * @public
5919
5927
  */
5920
- addOrUpdateTaints?: Taint[];
5928
+ addOrUpdateTaints?: Taint[] | undefined;
5921
5929
  /**
5922
5930
  * <p>Kubernetes taints to remove.</p>
5923
5931
  * @public
5924
5932
  */
5925
- removeTaints?: Taint[];
5933
+ removeTaints?: Taint[] | undefined;
5926
5934
  }
5927
5935
  /**
5928
5936
  * @public
@@ -5943,30 +5951,30 @@ export interface UpdateNodegroupConfigRequest {
5943
5951
  * update.</p>
5944
5952
  * @public
5945
5953
  */
5946
- labels?: UpdateLabelsPayload;
5954
+ labels?: UpdateLabelsPayload | undefined;
5947
5955
  /**
5948
5956
  * <p>The Kubernetes taints to be applied to the nodes in the node group after the update. For
5949
5957
  * more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/node-taints-managed-node-groups.html">Node taints on
5950
5958
  * managed node groups</a>.</p>
5951
5959
  * @public
5952
5960
  */
5953
- taints?: UpdateTaintsPayload;
5961
+ taints?: UpdateTaintsPayload | undefined;
5954
5962
  /**
5955
5963
  * <p>The scaling configuration details for the Auto Scaling group after the update.</p>
5956
5964
  * @public
5957
5965
  */
5958
- scalingConfig?: NodegroupScalingConfig;
5966
+ scalingConfig?: NodegroupScalingConfig | undefined;
5959
5967
  /**
5960
5968
  * <p>The node group update configuration.</p>
5961
5969
  * @public
5962
5970
  */
5963
- updateConfig?: NodegroupUpdateConfig;
5971
+ updateConfig?: NodegroupUpdateConfig | undefined;
5964
5972
  /**
5965
5973
  * <p>A unique, case-sensitive identifier that you provide to ensure
5966
5974
  * the idempotency of the request.</p>
5967
5975
  * @public
5968
5976
  */
5969
- clientRequestToken?: string;
5977
+ clientRequestToken?: string | undefined;
5970
5978
  }
5971
5979
  /**
5972
5980
  * @public
@@ -5976,7 +5984,7 @@ export interface UpdateNodegroupConfigResponse {
5976
5984
  * <p>An object representing an asynchronous update.</p>
5977
5985
  * @public
5978
5986
  */
5979
- update?: Update;
5987
+ update?: Update | undefined;
5980
5988
  }
5981
5989
  /**
5982
5990
  * @public
@@ -6000,7 +6008,7 @@ export interface UpdateNodegroupVersionRequest {
6000
6008
  * 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">Customizing managed nodes with launch templates</a> in the <i>Amazon EKS User Guide</i>.</p>
6001
6009
  * @public
6002
6010
  */
6003
- version?: string;
6011
+ version?: string | undefined;
6004
6012
  /**
6005
6013
  * <p>The AMI version of the Amazon EKS optimized AMI to use for the update. By
6006
6014
  * default, the latest available AMI version for the node group's Kubernetes version is used.
@@ -6012,14 +6020,14 @@ export interface UpdateNodegroupVersionRequest {
6012
6020
  * For more information about using launch templates with Amazon EKS, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html">Customizing managed nodes with launch templates</a> in the <i>Amazon EKS User Guide</i>.</p>
6013
6021
  * @public
6014
6022
  */
6015
- releaseVersion?: string;
6023
+ releaseVersion?: string | undefined;
6016
6024
  /**
6017
6025
  * <p>An object representing a node group's launch template specification. You can only
6018
6026
  * update a node group using a launch template if the node group was originally deployed
6019
6027
  * with a launch template.</p>
6020
6028
  * @public
6021
6029
  */
6022
- launchTemplate?: LaunchTemplateSpecification;
6030
+ launchTemplate?: LaunchTemplateSpecification | undefined;
6023
6031
  /**
6024
6032
  * <p>Force the update if any <code>Pod</code> on the existing node group can't be drained
6025
6033
  * due to a <code>Pod</code> disruption budget issue. If an update fails because all Pods
@@ -6027,13 +6035,13 @@ export interface UpdateNodegroupVersionRequest {
6027
6035
  * whether or not any <code>Pod</code> is running on the node.</p>
6028
6036
  * @public
6029
6037
  */
6030
- force?: boolean;
6038
+ force?: boolean | undefined;
6031
6039
  /**
6032
6040
  * <p>A unique, case-sensitive identifier that you provide to ensure
6033
6041
  * the idempotency of the request.</p>
6034
6042
  * @public
6035
6043
  */
6036
- clientRequestToken?: string;
6044
+ clientRequestToken?: string | undefined;
6037
6045
  }
6038
6046
  /**
6039
6047
  * @public
@@ -6043,7 +6051,7 @@ export interface UpdateNodegroupVersionResponse {
6043
6051
  * <p>An object representing an asynchronous update.</p>
6044
6052
  * @public
6045
6053
  */
6046
- update?: Update;
6054
+ update?: Update | undefined;
6047
6055
  }
6048
6056
  /**
6049
6057
  * @public
@@ -6063,13 +6071,13 @@ export interface UpdatePodIdentityAssociationRequest {
6063
6071
  * <p>The new IAM role to change the </p>
6064
6072
  * @public
6065
6073
  */
6066
- roleArn?: string;
6074
+ roleArn?: string | undefined;
6067
6075
  /**
6068
6076
  * <p>A unique, case-sensitive identifier that you provide to ensure
6069
6077
  * the idempotency of the request.</p>
6070
6078
  * @public
6071
6079
  */
6072
- clientRequestToken?: string;
6080
+ clientRequestToken?: string | undefined;
6073
6081
  }
6074
6082
  /**
6075
6083
  * @public
@@ -6079,5 +6087,5 @@ export interface UpdatePodIdentityAssociationResponse {
6079
6087
  * <p>The full description of the EKS Pod Identity association that was updated.</p>
6080
6088
  * @public
6081
6089
  */
6082
- association?: PodIdentityAssociation;
6090
+ association?: PodIdentityAssociation | undefined;
6083
6091
  }