@aws-sdk/client-eks 3.52.0 → 3.53.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.
@@ -4,3 +4,4 @@ export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
6
  export * from "./waiters";
7
+ export { EKSServiceException } from "./models/EKSServiceException";
@@ -0,0 +1,10 @@
1
+ import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
+ /**
3
+ * Base exception class for all service exceptions from EKS service.
4
+ */
5
+ export declare class EKSServiceException extends __ServiceException {
6
+ /**
7
+ * @internal
8
+ */
9
+ constructor(options: __ServiceExceptionOptions);
10
+ }
@@ -1,14 +1,18 @@
1
- import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { EKSServiceException as __BaseException } from "./EKSServiceException";
2
3
  /**
3
4
  * <p>You don't have permissions to perform the requested operation. The user or role that
4
5
  * is making the request must have at least one IAM permissions policy
5
6
  * attached that grants the required permissions. For more information, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access.html">Access
6
7
  * Management</a> in the <i>IAM User Guide</i>. </p>
7
8
  */
8
- export interface AccessDeniedException extends __SmithyException, $MetadataBearer {
9
- name: "AccessDeniedException";
10
- $fault: "client";
11
- message?: string;
9
+ export declare class AccessDeniedException extends __BaseException {
10
+ readonly name: "AccessDeniedException";
11
+ readonly $fault: "client";
12
+ /**
13
+ * @internal
14
+ */
15
+ constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
12
16
  }
13
17
  export declare enum AddonIssueCode {
14
18
  ACCESS_DENIED = "AccessDenied",
@@ -439,9 +443,9 @@ export declare namespace AssociateEncryptionConfigResponse {
439
443
  * action or resource on behalf of a user that doesn't have permissions to use the action
440
444
  * or resource or specifying an identifier that is not valid.</p>
441
445
  */
442
- export interface ClientException extends __SmithyException, $MetadataBearer {
443
- name: "ClientException";
444
- $fault: "client";
446
+ export declare class ClientException extends __BaseException {
447
+ readonly name: "ClientException";
448
+ readonly $fault: "client";
445
449
  /**
446
450
  * <p>The Amazon EKS cluster associated with the exception.</p>
447
451
  */
@@ -451,15 +455,18 @@ export interface ClientException extends __SmithyException, $MetadataBearer {
451
455
  */
452
456
  nodegroupName?: string;
453
457
  addonName?: string;
454
- message?: string;
458
+ /**
459
+ * @internal
460
+ */
461
+ constructor(opts: __ExceptionOptionType<ClientException, __BaseException>);
455
462
  }
456
463
  /**
457
464
  * <p>The specified parameter is invalid. Review the available parameters for the API
458
465
  * request.</p>
459
466
  */
460
- export interface InvalidParameterException extends __SmithyException, $MetadataBearer {
461
- name: "InvalidParameterException";
462
- $fault: "client";
467
+ export declare class InvalidParameterException extends __BaseException {
468
+ readonly name: "InvalidParameterException";
469
+ readonly $fault: "client";
463
470
  /**
464
471
  * <p>The Amazon EKS cluster associated with the exception.</p>
465
472
  */
@@ -473,15 +480,18 @@ export interface InvalidParameterException extends __SmithyException, $MetadataB
473
480
  */
474
481
  fargateProfileName?: string;
475
482
  addonName?: string;
476
- message?: string;
483
+ /**
484
+ * @internal
485
+ */
486
+ constructor(opts: __ExceptionOptionType<InvalidParameterException, __BaseException>);
477
487
  }
478
488
  /**
479
489
  * <p>The request is invalid given the state of the cluster. Check the state of the cluster
480
490
  * and the associated operations.</p>
481
491
  */
482
- export interface InvalidRequestException extends __SmithyException, $MetadataBearer {
483
- name: "InvalidRequestException";
484
- $fault: "client";
492
+ export declare class InvalidRequestException extends __BaseException {
493
+ readonly name: "InvalidRequestException";
494
+ readonly $fault: "client";
485
495
  /**
486
496
  * <p>The Amazon EKS cluster associated with the exception.</p>
487
497
  */
@@ -491,14 +501,17 @@ export interface InvalidRequestException extends __SmithyException, $MetadataBea
491
501
  */
492
502
  nodegroupName?: string;
493
503
  addonName?: string;
494
- message?: string;
504
+ /**
505
+ * @internal
506
+ */
507
+ constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
495
508
  }
496
509
  /**
497
510
  * <p>The specified resource is in use.</p>
498
511
  */
499
- export interface ResourceInUseException extends __SmithyException, $MetadataBearer {
500
- name: "ResourceInUseException";
501
- $fault: "client";
512
+ export declare class ResourceInUseException extends __BaseException {
513
+ readonly name: "ResourceInUseException";
514
+ readonly $fault: "client";
502
515
  /**
503
516
  * <p>The Amazon EKS cluster associated with the exception.</p>
504
517
  */
@@ -508,7 +521,10 @@ export interface ResourceInUseException extends __SmithyException, $MetadataBear
508
521
  */
509
522
  nodegroupName?: string;
510
523
  addonName?: string;
511
- message?: string;
524
+ /**
525
+ * @internal
526
+ */
527
+ constructor(opts: __ExceptionOptionType<ResourceInUseException, __BaseException>);
512
528
  }
513
529
  /**
514
530
  * <p>The specified resource could not be found. You can view your available clusters with
@@ -516,9 +532,9 @@ export interface ResourceInUseException extends __SmithyException, $MetadataBear
516
532
  * <a>ListNodegroups</a>. Amazon EKS clusters and node groups are
517
533
  * Region-specific.</p>
518
534
  */
519
- export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
520
- name: "ResourceNotFoundException";
521
- $fault: "client";
535
+ export declare class ResourceNotFoundException extends __BaseException {
536
+ readonly name: "ResourceNotFoundException";
537
+ readonly $fault: "client";
522
538
  /**
523
539
  * <p>The Amazon EKS cluster associated with the exception.</p>
524
540
  */
@@ -532,14 +548,17 @@ export interface ResourceNotFoundException extends __SmithyException, $MetadataB
532
548
  */
533
549
  fargateProfileName?: string;
534
550
  addonName?: string;
535
- message?: string;
551
+ /**
552
+ * @internal
553
+ */
554
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
536
555
  }
537
556
  /**
538
557
  * <p>These errors are usually caused by a server-side issue.</p>
539
558
  */
540
- export interface ServerException extends __SmithyException, $MetadataBearer {
541
- name: "ServerException";
542
- $fault: "server";
559
+ export declare class ServerException extends __BaseException {
560
+ readonly name: "ServerException";
561
+ readonly $fault: "server";
543
562
  /**
544
563
  * <p>The Amazon EKS cluster associated with the exception.</p>
545
564
  */
@@ -549,7 +568,10 @@ export interface ServerException extends __SmithyException, $MetadataBearer {
549
568
  */
550
569
  nodegroupName?: string;
551
570
  addonName?: string;
552
- message?: string;
571
+ /**
572
+ * @internal
573
+ */
574
+ constructor(opts: __ExceptionOptionType<ServerException, __BaseException>);
553
575
  }
554
576
  /**
555
577
  * <p>An object representing an OpenID Connect (OIDC) configuration. Before associating an
@@ -1283,9 +1305,9 @@ export declare namespace CreateClusterResponse {
1283
1305
  /**
1284
1306
  * <p>You have encountered a service limit on the specified resource.</p>
1285
1307
  */
1286
- export interface ResourceLimitExceededException extends __SmithyException, $MetadataBearer {
1287
- name: "ResourceLimitExceededException";
1288
- $fault: "client";
1308
+ export declare class ResourceLimitExceededException extends __BaseException {
1309
+ readonly name: "ResourceLimitExceededException";
1310
+ readonly $fault: "client";
1289
1311
  /**
1290
1312
  * <p>The Amazon EKS cluster associated with the exception.</p>
1291
1313
  */
@@ -1294,15 +1316,21 @@ export interface ResourceLimitExceededException extends __SmithyException, $Meta
1294
1316
  * <p>The Amazon EKS managed node group associated with the exception.</p>
1295
1317
  */
1296
1318
  nodegroupName?: string;
1297
- message?: string;
1319
+ /**
1320
+ * @internal
1321
+ */
1322
+ constructor(opts: __ExceptionOptionType<ResourceLimitExceededException, __BaseException>);
1298
1323
  }
1299
1324
  /**
1300
1325
  * <p>The service is unavailable. Back off and retry the operation.</p>
1301
1326
  */
1302
- export interface ServiceUnavailableException extends __SmithyException, $MetadataBearer {
1303
- name: "ServiceUnavailableException";
1304
- $fault: "server";
1305
- message?: string;
1327
+ export declare class ServiceUnavailableException extends __BaseException {
1328
+ readonly name: "ServiceUnavailableException";
1329
+ readonly $fault: "server";
1330
+ /**
1331
+ * @internal
1332
+ */
1333
+ constructor(opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>);
1306
1334
  }
1307
1335
  /**
1308
1336
  * <p>At least one of your specified cluster subnets is in an Availability Zone that does
@@ -1310,10 +1338,9 @@ export interface ServiceUnavailableException extends __SmithyException, $Metadat
1310
1338
  * Availability Zones for your account, from which you can choose subnets for your
1311
1339
  * cluster.</p>
1312
1340
  */
1313
- export interface UnsupportedAvailabilityZoneException extends __SmithyException, $MetadataBearer {
1314
- name: "UnsupportedAvailabilityZoneException";
1315
- $fault: "client";
1316
- message?: string;
1341
+ export declare class UnsupportedAvailabilityZoneException extends __BaseException {
1342
+ readonly name: "UnsupportedAvailabilityZoneException";
1343
+ readonly $fault: "client";
1317
1344
  /**
1318
1345
  * <p>The Amazon EKS cluster associated with the exception.</p>
1319
1346
  */
@@ -1327,6 +1354,10 @@ export interface UnsupportedAvailabilityZoneException extends __SmithyException,
1327
1354
  * Availability Zones for your cluster.</p>
1328
1355
  */
1329
1356
  validZones?: string[];
1357
+ /**
1358
+ * @internal
1359
+ */
1360
+ constructor(opts: __ExceptionOptionType<UnsupportedAvailabilityZoneException, __BaseException>);
1330
1361
  }
1331
1362
  /**
1332
1363
  * <p>An object representing an Fargate profile selector.</p>
@@ -2890,10 +2921,13 @@ export declare namespace ListNodegroupsResponse {
2890
2921
  * <p>This exception is thrown if the request contains a semantic error. The precise meaning
2891
2922
  * will depend on the API, and will be documented in the error message.</p>
2892
2923
  */
2893
- export interface BadRequestException extends __SmithyException, $MetadataBearer {
2894
- name: "BadRequestException";
2895
- $fault: "client";
2896
- message?: string;
2924
+ export declare class BadRequestException extends __BaseException {
2925
+ readonly name: "BadRequestException";
2926
+ readonly $fault: "client";
2927
+ /**
2928
+ * @internal
2929
+ */
2930
+ constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
2897
2931
  }
2898
2932
  export interface ListTagsForResourceRequest {
2899
2933
  /**
@@ -2926,10 +2960,13 @@ export declare namespace ListTagsForResourceResponse {
2926
2960
  * <p>A service resource associated with the request could not be found. Clients should not
2927
2961
  * retry such requests.</p>
2928
2962
  */
2929
- export interface NotFoundException extends __SmithyException, $MetadataBearer {
2930
- name: "NotFoundException";
2931
- $fault: "client";
2932
- message?: string;
2963
+ export declare class NotFoundException extends __BaseException {
2964
+ readonly name: "NotFoundException";
2965
+ readonly $fault: "client";
2966
+ /**
2967
+ * @internal
2968
+ */
2969
+ constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
2933
2970
  }
2934
2971
  export interface ListUpdatesRequest {
2935
2972
  /**
@@ -3065,10 +3102,13 @@ export declare namespace RegisterClusterResponse {
3065
3102
  /**
3066
3103
  * <p>Required resources (such as Service Linked Roles) were created and are still propagating. Retry later.</p>
3067
3104
  */
3068
- export interface ResourcePropagationDelayException extends __SmithyException, $MetadataBearer {
3069
- name: "ResourcePropagationDelayException";
3070
- $fault: "client";
3071
- message?: string;
3105
+ export declare class ResourcePropagationDelayException extends __BaseException {
3106
+ readonly name: "ResourcePropagationDelayException";
3107
+ readonly $fault: "client";
3108
+ /**
3109
+ * @internal
3110
+ */
3111
+ constructor(opts: __ExceptionOptionType<ResourcePropagationDelayException, __BaseException>);
3072
3112
  }
3073
3113
  export interface TagResourceRequest {
3074
3114
  /**
@@ -4,3 +4,4 @@ export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
6
  export * from "./waiters";
7
+ export { EKSServiceException } from "./models/EKSServiceException";
@@ -0,0 +1,6 @@
1
+ import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
+
3
+ export declare class EKSServiceException extends __ServiceException {
4
+
5
+ constructor(options: __ServiceExceptionOptions);
6
+ }
@@ -1,9 +1,11 @@
1
- import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { EKSServiceException as __BaseException } from "./EKSServiceException";
2
3
 
3
- export interface AccessDeniedException extends __SmithyException, $MetadataBearer {
4
- name: "AccessDeniedException";
5
- $fault: "client";
6
- message?: string;
4
+ export declare class AccessDeniedException extends __BaseException {
5
+ readonly name: "AccessDeniedException";
6
+ readonly $fault: "client";
7
+
8
+ constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
7
9
  }
8
10
  export declare enum AddonIssueCode {
9
11
  ACCESS_DENIED = "AccessDenied",
@@ -251,20 +253,21 @@ export declare namespace AssociateEncryptionConfigResponse {
251
253
  const filterSensitiveLog: (obj: AssociateEncryptionConfigResponse) => any;
252
254
  }
253
255
 
254
- export interface ClientException extends __SmithyException, $MetadataBearer {
255
- name: "ClientException";
256
- $fault: "client";
256
+ export declare class ClientException extends __BaseException {
257
+ readonly name: "ClientException";
258
+ readonly $fault: "client";
257
259
 
258
260
  clusterName?: string;
259
261
 
260
262
  nodegroupName?: string;
261
263
  addonName?: string;
262
- message?: string;
264
+
265
+ constructor(opts: __ExceptionOptionType<ClientException, __BaseException>);
263
266
  }
264
267
 
265
- export interface InvalidParameterException extends __SmithyException, $MetadataBearer {
266
- name: "InvalidParameterException";
267
- $fault: "client";
268
+ export declare class InvalidParameterException extends __BaseException {
269
+ readonly name: "InvalidParameterException";
270
+ readonly $fault: "client";
268
271
 
269
272
  clusterName?: string;
270
273
 
@@ -272,34 +275,37 @@ export interface InvalidParameterException extends __SmithyException, $MetadataB
272
275
 
273
276
  fargateProfileName?: string;
274
277
  addonName?: string;
275
- message?: string;
278
+
279
+ constructor(opts: __ExceptionOptionType<InvalidParameterException, __BaseException>);
276
280
  }
277
281
 
278
- export interface InvalidRequestException extends __SmithyException, $MetadataBearer {
279
- name: "InvalidRequestException";
280
- $fault: "client";
282
+ export declare class InvalidRequestException extends __BaseException {
283
+ readonly name: "InvalidRequestException";
284
+ readonly $fault: "client";
281
285
 
282
286
  clusterName?: string;
283
287
 
284
288
  nodegroupName?: string;
285
289
  addonName?: string;
286
- message?: string;
290
+
291
+ constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
287
292
  }
288
293
 
289
- export interface ResourceInUseException extends __SmithyException, $MetadataBearer {
290
- name: "ResourceInUseException";
291
- $fault: "client";
294
+ export declare class ResourceInUseException extends __BaseException {
295
+ readonly name: "ResourceInUseException";
296
+ readonly $fault: "client";
292
297
 
293
298
  clusterName?: string;
294
299
 
295
300
  nodegroupName?: string;
296
301
  addonName?: string;
297
- message?: string;
302
+
303
+ constructor(opts: __ExceptionOptionType<ResourceInUseException, __BaseException>);
298
304
  }
299
305
 
300
- export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
301
- name: "ResourceNotFoundException";
302
- $fault: "client";
306
+ export declare class ResourceNotFoundException extends __BaseException {
307
+ readonly name: "ResourceNotFoundException";
308
+ readonly $fault: "client";
303
309
 
304
310
  clusterName?: string;
305
311
 
@@ -307,18 +313,20 @@ export interface ResourceNotFoundException extends __SmithyException, $MetadataB
307
313
 
308
314
  fargateProfileName?: string;
309
315
  addonName?: string;
310
- message?: string;
316
+
317
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
311
318
  }
312
319
 
313
- export interface ServerException extends __SmithyException, $MetadataBearer {
314
- name: "ServerException";
315
- $fault: "server";
320
+ export declare class ServerException extends __BaseException {
321
+ readonly name: "ServerException";
322
+ readonly $fault: "server";
316
323
 
317
324
  clusterName?: string;
318
325
 
319
326
  nodegroupName?: string;
320
327
  addonName?: string;
321
- message?: string;
328
+
329
+ constructor(opts: __ExceptionOptionType<ServerException, __BaseException>);
322
330
  }
323
331
 
324
332
  export interface OidcIdentityProviderConfigRequest {
@@ -629,32 +637,35 @@ export declare namespace CreateClusterResponse {
629
637
  const filterSensitiveLog: (obj: CreateClusterResponse) => any;
630
638
  }
631
639
 
632
- export interface ResourceLimitExceededException extends __SmithyException, $MetadataBearer {
633
- name: "ResourceLimitExceededException";
634
- $fault: "client";
640
+ export declare class ResourceLimitExceededException extends __BaseException {
641
+ readonly name: "ResourceLimitExceededException";
642
+ readonly $fault: "client";
635
643
 
636
644
  clusterName?: string;
637
645
 
638
646
  nodegroupName?: string;
639
- message?: string;
647
+
648
+ constructor(opts: __ExceptionOptionType<ResourceLimitExceededException, __BaseException>);
640
649
  }
641
650
 
642
- export interface ServiceUnavailableException extends __SmithyException, $MetadataBearer {
643
- name: "ServiceUnavailableException";
644
- $fault: "server";
645
- message?: string;
651
+ export declare class ServiceUnavailableException extends __BaseException {
652
+ readonly name: "ServiceUnavailableException";
653
+ readonly $fault: "server";
654
+
655
+ constructor(opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>);
646
656
  }
647
657
 
648
- export interface UnsupportedAvailabilityZoneException extends __SmithyException, $MetadataBearer {
649
- name: "UnsupportedAvailabilityZoneException";
650
- $fault: "client";
651
- message?: string;
658
+ export declare class UnsupportedAvailabilityZoneException extends __BaseException {
659
+ readonly name: "UnsupportedAvailabilityZoneException";
660
+ readonly $fault: "client";
652
661
 
653
662
  clusterName?: string;
654
663
 
655
664
  nodegroupName?: string;
656
665
 
657
666
  validZones?: string[];
667
+
668
+ constructor(opts: __ExceptionOptionType<UnsupportedAvailabilityZoneException, __BaseException>);
658
669
  }
659
670
 
660
671
  export interface FargateProfileSelector {
@@ -1372,10 +1383,11 @@ export declare namespace ListNodegroupsResponse {
1372
1383
  const filterSensitiveLog: (obj: ListNodegroupsResponse) => any;
1373
1384
  }
1374
1385
 
1375
- export interface BadRequestException extends __SmithyException, $MetadataBearer {
1376
- name: "BadRequestException";
1377
- $fault: "client";
1378
- message?: string;
1386
+ export declare class BadRequestException extends __BaseException {
1387
+ readonly name: "BadRequestException";
1388
+ readonly $fault: "client";
1389
+
1390
+ constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
1379
1391
  }
1380
1392
  export interface ListTagsForResourceRequest {
1381
1393
 
@@ -1396,10 +1408,11 @@ export declare namespace ListTagsForResourceResponse {
1396
1408
  const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
1397
1409
  }
1398
1410
 
1399
- export interface NotFoundException extends __SmithyException, $MetadataBearer {
1400
- name: "NotFoundException";
1401
- $fault: "client";
1402
- message?: string;
1411
+ export declare class NotFoundException extends __BaseException {
1412
+ readonly name: "NotFoundException";
1413
+ readonly $fault: "client";
1414
+
1415
+ constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
1403
1416
  }
1404
1417
  export interface ListUpdatesRequest {
1405
1418
 
@@ -1474,10 +1487,11 @@ export declare namespace RegisterClusterResponse {
1474
1487
  const filterSensitiveLog: (obj: RegisterClusterResponse) => any;
1475
1488
  }
1476
1489
 
1477
- export interface ResourcePropagationDelayException extends __SmithyException, $MetadataBearer {
1478
- name: "ResourcePropagationDelayException";
1479
- $fault: "client";
1480
- message?: string;
1490
+ export declare class ResourcePropagationDelayException extends __BaseException {
1491
+ readonly name: "ResourcePropagationDelayException";
1492
+ readonly $fault: "client";
1493
+
1494
+ constructor(opts: __ExceptionOptionType<ResourcePropagationDelayException, __BaseException>);
1481
1495
  }
1482
1496
  export interface TagResourceRequest {
1483
1497
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-eks",
3
3
  "description": "AWS SDK for JavaScript Eks Client for Node.js, Browser and React Native",
4
- "version": "3.52.0",
4
+ "version": "3.53.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -18,37 +18,37 @@
18
18
  "dependencies": {
19
19
  "@aws-crypto/sha256-browser": "2.0.0",
20
20
  "@aws-crypto/sha256-js": "2.0.0",
21
- "@aws-sdk/client-sts": "3.52.0",
22
- "@aws-sdk/config-resolver": "3.52.0",
23
- "@aws-sdk/credential-provider-node": "3.52.0",
24
- "@aws-sdk/fetch-http-handler": "3.52.0",
25
- "@aws-sdk/hash-node": "3.52.0",
26
- "@aws-sdk/invalid-dependency": "3.52.0",
27
- "@aws-sdk/middleware-content-length": "3.52.0",
28
- "@aws-sdk/middleware-host-header": "3.52.0",
29
- "@aws-sdk/middleware-logger": "3.52.0",
30
- "@aws-sdk/middleware-retry": "3.52.0",
31
- "@aws-sdk/middleware-serde": "3.52.0",
32
- "@aws-sdk/middleware-signing": "3.52.0",
33
- "@aws-sdk/middleware-stack": "3.52.0",
34
- "@aws-sdk/middleware-user-agent": "3.52.0",
35
- "@aws-sdk/node-config-provider": "3.52.0",
36
- "@aws-sdk/node-http-handler": "3.52.0",
37
- "@aws-sdk/protocol-http": "3.52.0",
38
- "@aws-sdk/smithy-client": "3.52.0",
39
- "@aws-sdk/types": "3.52.0",
40
- "@aws-sdk/url-parser": "3.52.0",
21
+ "@aws-sdk/client-sts": "3.53.0",
22
+ "@aws-sdk/config-resolver": "3.53.0",
23
+ "@aws-sdk/credential-provider-node": "3.53.0",
24
+ "@aws-sdk/fetch-http-handler": "3.53.0",
25
+ "@aws-sdk/hash-node": "3.53.0",
26
+ "@aws-sdk/invalid-dependency": "3.53.0",
27
+ "@aws-sdk/middleware-content-length": "3.53.0",
28
+ "@aws-sdk/middleware-host-header": "3.53.0",
29
+ "@aws-sdk/middleware-logger": "3.53.0",
30
+ "@aws-sdk/middleware-retry": "3.53.0",
31
+ "@aws-sdk/middleware-serde": "3.53.0",
32
+ "@aws-sdk/middleware-signing": "3.53.0",
33
+ "@aws-sdk/middleware-stack": "3.53.0",
34
+ "@aws-sdk/middleware-user-agent": "3.53.0",
35
+ "@aws-sdk/node-config-provider": "3.53.0",
36
+ "@aws-sdk/node-http-handler": "3.53.0",
37
+ "@aws-sdk/protocol-http": "3.53.0",
38
+ "@aws-sdk/smithy-client": "3.53.0",
39
+ "@aws-sdk/types": "3.53.0",
40
+ "@aws-sdk/url-parser": "3.53.0",
41
41
  "@aws-sdk/util-base64-browser": "3.52.0",
42
42
  "@aws-sdk/util-base64-node": "3.52.0",
43
43
  "@aws-sdk/util-body-length-browser": "3.52.0",
44
44
  "@aws-sdk/util-body-length-node": "3.52.0",
45
- "@aws-sdk/util-defaults-mode-browser": "3.52.0",
46
- "@aws-sdk/util-defaults-mode-node": "3.52.0",
47
- "@aws-sdk/util-user-agent-browser": "3.52.0",
48
- "@aws-sdk/util-user-agent-node": "3.52.0",
45
+ "@aws-sdk/util-defaults-mode-browser": "3.53.0",
46
+ "@aws-sdk/util-defaults-mode-node": "3.53.0",
47
+ "@aws-sdk/util-user-agent-browser": "3.53.0",
48
+ "@aws-sdk/util-user-agent-node": "3.53.0",
49
49
  "@aws-sdk/util-utf8-browser": "3.52.0",
50
50
  "@aws-sdk/util-utf8-node": "3.52.0",
51
- "@aws-sdk/util-waiter": "3.52.0",
51
+ "@aws-sdk/util-waiter": "3.53.0",
52
52
  "tslib": "^2.3.0",
53
53
  "uuid": "^8.3.2"
54
54
  },