@aws-sdk/client-ecr 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.
@@ -1,4 +1,5 @@
1
- import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { ECRServiceException as __BaseException } from "./ECRServiceException";
2
3
  export interface BatchCheckLayerAvailabilityRequest {
3
4
 
4
5
  registryId?: string;
@@ -58,25 +59,25 @@ export declare namespace BatchCheckLayerAvailabilityResponse {
58
59
  const filterSensitiveLog: (obj: BatchCheckLayerAvailabilityResponse) => any;
59
60
  }
60
61
 
61
- export interface InvalidParameterException extends __SmithyException, $MetadataBearer {
62
- name: "InvalidParameterException";
63
- $fault: "client";
62
+ export declare class InvalidParameterException extends __BaseException {
63
+ readonly name: "InvalidParameterException";
64
+ readonly $fault: "client";
64
65
 
65
- message?: string;
66
+ constructor(opts: __ExceptionOptionType<InvalidParameterException, __BaseException>);
66
67
  }
67
68
 
68
- export interface RepositoryNotFoundException extends __SmithyException, $MetadataBearer {
69
- name: "RepositoryNotFoundException";
70
- $fault: "client";
69
+ export declare class RepositoryNotFoundException extends __BaseException {
70
+ readonly name: "RepositoryNotFoundException";
71
+ readonly $fault: "client";
71
72
 
72
- message?: string;
73
+ constructor(opts: __ExceptionOptionType<RepositoryNotFoundException, __BaseException>);
73
74
  }
74
75
 
75
- export interface ServerException extends __SmithyException, $MetadataBearer {
76
- name: "ServerException";
77
- $fault: "server";
76
+ export declare class ServerException extends __BaseException {
77
+ readonly name: "ServerException";
78
+ readonly $fault: "server";
78
79
 
79
- message?: string;
80
+ constructor(opts: __ExceptionOptionType<ServerException, __BaseException>);
80
81
  }
81
82
 
82
83
  export interface ImageIdentifier {
@@ -246,10 +247,11 @@ export declare namespace BatchGetRepositoryScanningConfigurationResponse {
246
247
  const filterSensitiveLog: (obj: BatchGetRepositoryScanningConfigurationResponse) => any;
247
248
  }
248
249
 
249
- export interface ValidationException extends __SmithyException, $MetadataBearer {
250
- name: "ValidationException";
251
- $fault: "client";
252
- message?: string;
250
+ export declare class ValidationException extends __BaseException {
251
+ readonly name: "ValidationException";
252
+ readonly $fault: "client";
253
+
254
+ constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
253
255
  }
254
256
  export interface CompleteLayerUploadRequest {
255
257
 
@@ -280,47 +282,48 @@ export declare namespace CompleteLayerUploadResponse {
280
282
  const filterSensitiveLog: (obj: CompleteLayerUploadResponse) => any;
281
283
  }
282
284
 
283
- export interface EmptyUploadException extends __SmithyException, $MetadataBearer {
284
- name: "EmptyUploadException";
285
- $fault: "client";
285
+ export declare class EmptyUploadException extends __BaseException {
286
+ readonly name: "EmptyUploadException";
287
+ readonly $fault: "client";
286
288
 
287
- message?: string;
289
+ constructor(opts: __ExceptionOptionType<EmptyUploadException, __BaseException>);
288
290
  }
289
291
 
290
- export interface InvalidLayerException extends __SmithyException, $MetadataBearer {
291
- name: "InvalidLayerException";
292
- $fault: "client";
292
+ export declare class InvalidLayerException extends __BaseException {
293
+ readonly name: "InvalidLayerException";
294
+ readonly $fault: "client";
293
295
 
294
- message?: string;
296
+ constructor(opts: __ExceptionOptionType<InvalidLayerException, __BaseException>);
295
297
  }
296
298
 
297
- export interface KmsException extends __SmithyException, $MetadataBearer {
298
- name: "KmsException";
299
- $fault: "client";
300
- message?: string;
299
+ export declare class KmsException extends __BaseException {
300
+ readonly name: "KmsException";
301
+ readonly $fault: "client";
301
302
 
302
303
  kmsError?: string;
304
+
305
+ constructor(opts: __ExceptionOptionType<KmsException, __BaseException>);
303
306
  }
304
307
 
305
- export interface LayerAlreadyExistsException extends __SmithyException, $MetadataBearer {
306
- name: "LayerAlreadyExistsException";
307
- $fault: "client";
308
+ export declare class LayerAlreadyExistsException extends __BaseException {
309
+ readonly name: "LayerAlreadyExistsException";
310
+ readonly $fault: "client";
308
311
 
309
- message?: string;
312
+ constructor(opts: __ExceptionOptionType<LayerAlreadyExistsException, __BaseException>);
310
313
  }
311
314
 
312
- export interface LayerPartTooSmallException extends __SmithyException, $MetadataBearer {
313
- name: "LayerPartTooSmallException";
314
- $fault: "client";
315
+ export declare class LayerPartTooSmallException extends __BaseException {
316
+ readonly name: "LayerPartTooSmallException";
317
+ readonly $fault: "client";
315
318
 
316
- message?: string;
319
+ constructor(opts: __ExceptionOptionType<LayerPartTooSmallException, __BaseException>);
317
320
  }
318
321
 
319
- export interface UploadNotFoundException extends __SmithyException, $MetadataBearer {
320
- name: "UploadNotFoundException";
321
- $fault: "client";
322
+ export declare class UploadNotFoundException extends __BaseException {
323
+ readonly name: "UploadNotFoundException";
324
+ readonly $fault: "client";
322
325
 
323
- message?: string;
326
+ constructor(opts: __ExceptionOptionType<UploadNotFoundException, __BaseException>);
324
327
  }
325
328
  export interface CreatePullThroughCacheRuleRequest {
326
329
 
@@ -349,23 +352,25 @@ export declare namespace CreatePullThroughCacheRuleResponse {
349
352
  const filterSensitiveLog: (obj: CreatePullThroughCacheRuleResponse) => any;
350
353
  }
351
354
 
352
- export interface LimitExceededException extends __SmithyException, $MetadataBearer {
353
- name: "LimitExceededException";
354
- $fault: "client";
355
+ export declare class LimitExceededException extends __BaseException {
356
+ readonly name: "LimitExceededException";
357
+ readonly $fault: "client";
355
358
 
356
- message?: string;
359
+ constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
357
360
  }
358
361
 
359
- export interface PullThroughCacheRuleAlreadyExistsException extends __SmithyException, $MetadataBearer {
360
- name: "PullThroughCacheRuleAlreadyExistsException";
361
- $fault: "client";
362
- message?: string;
362
+ export declare class PullThroughCacheRuleAlreadyExistsException extends __BaseException {
363
+ readonly name: "PullThroughCacheRuleAlreadyExistsException";
364
+ readonly $fault: "client";
365
+
366
+ constructor(opts: __ExceptionOptionType<PullThroughCacheRuleAlreadyExistsException, __BaseException>);
363
367
  }
364
368
 
365
- export interface UnsupportedUpstreamRegistryException extends __SmithyException, $MetadataBearer {
366
- name: "UnsupportedUpstreamRegistryException";
367
- $fault: "client";
368
- message?: string;
369
+ export declare class UnsupportedUpstreamRegistryException extends __BaseException {
370
+ readonly name: "UnsupportedUpstreamRegistryException";
371
+ readonly $fault: "client";
372
+
373
+ constructor(opts: __ExceptionOptionType<UnsupportedUpstreamRegistryException, __BaseException>);
369
374
  }
370
375
  export declare enum EncryptionType {
371
376
  AES256 = "AES256",
@@ -456,23 +461,25 @@ export declare namespace CreateRepositoryResponse {
456
461
  const filterSensitiveLog: (obj: CreateRepositoryResponse) => any;
457
462
  }
458
463
 
459
- export interface InvalidTagParameterException extends __SmithyException, $MetadataBearer {
460
- name: "InvalidTagParameterException";
461
- $fault: "client";
462
- message?: string;
464
+ export declare class InvalidTagParameterException extends __BaseException {
465
+ readonly name: "InvalidTagParameterException";
466
+ readonly $fault: "client";
467
+
468
+ constructor(opts: __ExceptionOptionType<InvalidTagParameterException, __BaseException>);
463
469
  }
464
470
 
465
- export interface RepositoryAlreadyExistsException extends __SmithyException, $MetadataBearer {
466
- name: "RepositoryAlreadyExistsException";
467
- $fault: "client";
471
+ export declare class RepositoryAlreadyExistsException extends __BaseException {
472
+ readonly name: "RepositoryAlreadyExistsException";
473
+ readonly $fault: "client";
468
474
 
469
- message?: string;
475
+ constructor(opts: __ExceptionOptionType<RepositoryAlreadyExistsException, __BaseException>);
470
476
  }
471
477
 
472
- export interface TooManyTagsException extends __SmithyException, $MetadataBearer {
473
- name: "TooManyTagsException";
474
- $fault: "client";
475
- message?: string;
478
+ export declare class TooManyTagsException extends __BaseException {
479
+ readonly name: "TooManyTagsException";
480
+ readonly $fault: "client";
481
+
482
+ constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
476
483
  }
477
484
  export interface DeleteLifecyclePolicyRequest {
478
485
 
@@ -499,10 +506,11 @@ export declare namespace DeleteLifecyclePolicyResponse {
499
506
  const filterSensitiveLog: (obj: DeleteLifecyclePolicyResponse) => any;
500
507
  }
501
508
 
502
- export interface LifecyclePolicyNotFoundException extends __SmithyException, $MetadataBearer {
503
- name: "LifecyclePolicyNotFoundException";
504
- $fault: "client";
505
- message?: string;
509
+ export declare class LifecyclePolicyNotFoundException extends __BaseException {
510
+ readonly name: "LifecyclePolicyNotFoundException";
511
+ readonly $fault: "client";
512
+
513
+ constructor(opts: __ExceptionOptionType<LifecyclePolicyNotFoundException, __BaseException>);
506
514
  }
507
515
  export interface DeletePullThroughCacheRuleRequest {
508
516
 
@@ -529,10 +537,11 @@ export declare namespace DeletePullThroughCacheRuleResponse {
529
537
  const filterSensitiveLog: (obj: DeletePullThroughCacheRuleResponse) => any;
530
538
  }
531
539
 
532
- export interface PullThroughCacheRuleNotFoundException extends __SmithyException, $MetadataBearer {
533
- name: "PullThroughCacheRuleNotFoundException";
534
- $fault: "client";
535
- message?: string;
540
+ export declare class PullThroughCacheRuleNotFoundException extends __BaseException {
541
+ readonly name: "PullThroughCacheRuleNotFoundException";
542
+ readonly $fault: "client";
543
+
544
+ constructor(opts: __ExceptionOptionType<PullThroughCacheRuleNotFoundException, __BaseException>);
536
545
  }
537
546
  export interface DeleteRegistryPolicyRequest {
538
547
  }
@@ -551,10 +560,11 @@ export declare namespace DeleteRegistryPolicyResponse {
551
560
  const filterSensitiveLog: (obj: DeleteRegistryPolicyResponse) => any;
552
561
  }
553
562
 
554
- export interface RegistryPolicyNotFoundException extends __SmithyException, $MetadataBearer {
555
- name: "RegistryPolicyNotFoundException";
556
- $fault: "client";
557
- message?: string;
563
+ export declare class RegistryPolicyNotFoundException extends __BaseException {
564
+ readonly name: "RegistryPolicyNotFoundException";
565
+ readonly $fault: "client";
566
+
567
+ constructor(opts: __ExceptionOptionType<RegistryPolicyNotFoundException, __BaseException>);
558
568
  }
559
569
  export interface DeleteRepositoryRequest {
560
570
 
@@ -577,11 +587,11 @@ export declare namespace DeleteRepositoryResponse {
577
587
  const filterSensitiveLog: (obj: DeleteRepositoryResponse) => any;
578
588
  }
579
589
 
580
- export interface RepositoryNotEmptyException extends __SmithyException, $MetadataBearer {
581
- name: "RepositoryNotEmptyException";
582
- $fault: "client";
590
+ export declare class RepositoryNotEmptyException extends __BaseException {
591
+ readonly name: "RepositoryNotEmptyException";
592
+ readonly $fault: "client";
583
593
 
584
- message?: string;
594
+ constructor(opts: __ExceptionOptionType<RepositoryNotEmptyException, __BaseException>);
585
595
  }
586
596
  export interface DeleteRepositoryPolicyRequest {
587
597
 
@@ -606,11 +616,11 @@ export declare namespace DeleteRepositoryPolicyResponse {
606
616
  const filterSensitiveLog: (obj: DeleteRepositoryPolicyResponse) => any;
607
617
  }
608
618
 
609
- export interface RepositoryPolicyNotFoundException extends __SmithyException, $MetadataBearer {
610
- name: "RepositoryPolicyNotFoundException";
611
- $fault: "client";
619
+ export declare class RepositoryPolicyNotFoundException extends __BaseException {
620
+ readonly name: "RepositoryPolicyNotFoundException";
621
+ readonly $fault: "client";
612
622
 
613
- message?: string;
623
+ constructor(opts: __ExceptionOptionType<RepositoryPolicyNotFoundException, __BaseException>);
614
624
  }
615
625
  export interface DescribeImageReplicationStatusRequest {
616
626
 
@@ -657,10 +667,11 @@ export declare namespace DescribeImageReplicationStatusResponse {
657
667
  const filterSensitiveLog: (obj: DescribeImageReplicationStatusResponse) => any;
658
668
  }
659
669
 
660
- export interface ImageNotFoundException extends __SmithyException, $MetadataBearer {
661
- name: "ImageNotFoundException";
662
- $fault: "client";
663
- message?: string;
670
+ export declare class ImageNotFoundException extends __BaseException {
671
+ readonly name: "ImageNotFoundException";
672
+ readonly $fault: "client";
673
+
674
+ constructor(opts: __ExceptionOptionType<ImageNotFoundException, __BaseException>);
664
675
  }
665
676
  export declare enum TagStatus {
666
677
  ANY = "ANY",
@@ -1065,10 +1076,11 @@ export declare namespace DescribeImageScanFindingsResponse {
1065
1076
  const filterSensitiveLog: (obj: DescribeImageScanFindingsResponse) => any;
1066
1077
  }
1067
1078
 
1068
- export interface ScanNotFoundException extends __SmithyException, $MetadataBearer {
1069
- name: "ScanNotFoundException";
1070
- $fault: "client";
1071
- message?: string;
1079
+ export declare class ScanNotFoundException extends __BaseException {
1080
+ readonly name: "ScanNotFoundException";
1081
+ readonly $fault: "client";
1082
+
1083
+ constructor(opts: __ExceptionOptionType<ScanNotFoundException, __BaseException>);
1072
1084
  }
1073
1085
  export interface DescribePullThroughCacheRulesRequest {
1074
1086
 
@@ -1246,18 +1258,18 @@ export declare namespace GetDownloadUrlForLayerResponse {
1246
1258
  const filterSensitiveLog: (obj: GetDownloadUrlForLayerResponse) => any;
1247
1259
  }
1248
1260
 
1249
- export interface LayerInaccessibleException extends __SmithyException, $MetadataBearer {
1250
- name: "LayerInaccessibleException";
1251
- $fault: "client";
1261
+ export declare class LayerInaccessibleException extends __BaseException {
1262
+ readonly name: "LayerInaccessibleException";
1263
+ readonly $fault: "client";
1252
1264
 
1253
- message?: string;
1265
+ constructor(opts: __ExceptionOptionType<LayerInaccessibleException, __BaseException>);
1254
1266
  }
1255
1267
 
1256
- export interface LayersNotFoundException extends __SmithyException, $MetadataBearer {
1257
- name: "LayersNotFoundException";
1258
- $fault: "client";
1268
+ export declare class LayersNotFoundException extends __BaseException {
1269
+ readonly name: "LayersNotFoundException";
1270
+ readonly $fault: "client";
1259
1271
 
1260
- message?: string;
1272
+ constructor(opts: __ExceptionOptionType<LayersNotFoundException, __BaseException>);
1261
1273
  }
1262
1274
  export interface GetLifecyclePolicyRequest {
1263
1275
 
@@ -1375,10 +1387,11 @@ export declare namespace GetLifecyclePolicyPreviewResponse {
1375
1387
  const filterSensitiveLog: (obj: GetLifecyclePolicyPreviewResponse) => any;
1376
1388
  }
1377
1389
 
1378
- export interface LifecyclePolicyPreviewNotFoundException extends __SmithyException, $MetadataBearer {
1379
- name: "LifecyclePolicyPreviewNotFoundException";
1380
- $fault: "client";
1381
- message?: string;
1390
+ export declare class LifecyclePolicyPreviewNotFoundException extends __BaseException {
1391
+ readonly name: "LifecyclePolicyPreviewNotFoundException";
1392
+ readonly $fault: "client";
1393
+
1394
+ constructor(opts: __ExceptionOptionType<LifecyclePolicyPreviewNotFoundException, __BaseException>);
1382
1395
  }
1383
1396
  export interface GetRegistryPolicyRequest {
1384
1397
  }
@@ -1532,23 +1545,25 @@ export declare namespace ListTagsForResourceResponse {
1532
1545
  const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
1533
1546
  }
1534
1547
 
1535
- export interface ImageAlreadyExistsException extends __SmithyException, $MetadataBearer {
1536
- name: "ImageAlreadyExistsException";
1537
- $fault: "client";
1548
+ export declare class ImageAlreadyExistsException extends __BaseException {
1549
+ readonly name: "ImageAlreadyExistsException";
1550
+ readonly $fault: "client";
1538
1551
 
1539
- message?: string;
1552
+ constructor(opts: __ExceptionOptionType<ImageAlreadyExistsException, __BaseException>);
1540
1553
  }
1541
1554
 
1542
- export interface ImageDigestDoesNotMatchException extends __SmithyException, $MetadataBearer {
1543
- name: "ImageDigestDoesNotMatchException";
1544
- $fault: "client";
1545
- message?: string;
1555
+ export declare class ImageDigestDoesNotMatchException extends __BaseException {
1556
+ readonly name: "ImageDigestDoesNotMatchException";
1557
+ readonly $fault: "client";
1558
+
1559
+ constructor(opts: __ExceptionOptionType<ImageDigestDoesNotMatchException, __BaseException>);
1546
1560
  }
1547
1561
 
1548
- export interface ImageTagAlreadyExistsException extends __SmithyException, $MetadataBearer {
1549
- name: "ImageTagAlreadyExistsException";
1550
- $fault: "client";
1551
- message?: string;
1562
+ export declare class ImageTagAlreadyExistsException extends __BaseException {
1563
+ readonly name: "ImageTagAlreadyExistsException";
1564
+ readonly $fault: "client";
1565
+
1566
+ constructor(opts: __ExceptionOptionType<ImageTagAlreadyExistsException, __BaseException>);
1552
1567
  }
1553
1568
  export interface PutImageRequest {
1554
1569
 
@@ -1577,10 +1592,11 @@ export declare namespace PutImageResponse {
1577
1592
  const filterSensitiveLog: (obj: PutImageResponse) => any;
1578
1593
  }
1579
1594
 
1580
- export interface ReferencedImagesNotFoundException extends __SmithyException, $MetadataBearer {
1581
- name: "ReferencedImagesNotFoundException";
1582
- $fault: "client";
1583
- message?: string;
1595
+ export declare class ReferencedImagesNotFoundException extends __BaseException {
1596
+ readonly name: "ReferencedImagesNotFoundException";
1597
+ readonly $fault: "client";
1598
+
1599
+ constructor(opts: __ExceptionOptionType<ReferencedImagesNotFoundException, __BaseException>);
1584
1600
  }
1585
1601
  export interface PutImageScanningConfigurationRequest {
1586
1602
 
@@ -1759,16 +1775,18 @@ export declare namespace StartImageScanResponse {
1759
1775
  const filterSensitiveLog: (obj: StartImageScanResponse) => any;
1760
1776
  }
1761
1777
 
1762
- export interface UnsupportedImageTypeException extends __SmithyException, $MetadataBearer {
1763
- name: "UnsupportedImageTypeException";
1764
- $fault: "client";
1765
- message?: string;
1778
+ export declare class UnsupportedImageTypeException extends __BaseException {
1779
+ readonly name: "UnsupportedImageTypeException";
1780
+ readonly $fault: "client";
1781
+
1782
+ constructor(opts: __ExceptionOptionType<UnsupportedImageTypeException, __BaseException>);
1766
1783
  }
1767
1784
 
1768
- export interface LifecyclePolicyPreviewInProgressException extends __SmithyException, $MetadataBearer {
1769
- name: "LifecyclePolicyPreviewInProgressException";
1770
- $fault: "client";
1771
- message?: string;
1785
+ export declare class LifecyclePolicyPreviewInProgressException extends __BaseException {
1786
+ readonly name: "LifecyclePolicyPreviewInProgressException";
1787
+ readonly $fault: "client";
1788
+
1789
+ constructor(opts: __ExceptionOptionType<LifecyclePolicyPreviewInProgressException, __BaseException>);
1772
1790
  }
1773
1791
  export interface StartLifecyclePolicyPreviewRequest {
1774
1792
 
@@ -1829,9 +1847,9 @@ export declare namespace UntagResourceResponse {
1829
1847
  const filterSensitiveLog: (obj: UntagResourceResponse) => any;
1830
1848
  }
1831
1849
 
1832
- export interface InvalidLayerPartException extends __SmithyException, $MetadataBearer {
1833
- name: "InvalidLayerPartException";
1834
- $fault: "client";
1850
+ export declare class InvalidLayerPartException extends __BaseException {
1851
+ readonly name: "InvalidLayerPartException";
1852
+ readonly $fault: "client";
1835
1853
 
1836
1854
  registryId?: string;
1837
1855
 
@@ -1841,7 +1859,7 @@ export interface InvalidLayerPartException extends __SmithyException, $MetadataB
1841
1859
 
1842
1860
  lastValidByteReceived?: number;
1843
1861
 
1844
- message?: string;
1862
+ constructor(opts: __ExceptionOptionType<InvalidLayerPartException, __BaseException>);
1845
1863
  }
1846
1864
  export interface UploadLayerPartRequest {
1847
1865
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-ecr",
3
3
  "description": "AWS SDK for JavaScript Ecr 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
  },
54
54
  "devDependencies": {