@aws-sdk/client-route53-recovery-readiness 3.99.0 → 3.109.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.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,33 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.109.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.108.1...v3.109.0) (2022-06-13)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/client-route53-recovery-readiness
9
+
10
+
11
+
12
+
13
+
14
+ # [3.105.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.104.0...v3.105.0) (2022-06-06)
15
+
16
+
17
+ ### Features
18
+
19
+ * **clients:** support recursion detection in Lambda ([#3654](https://github.com/aws/aws-sdk-js-v3/issues/3654)) ([ecfe46e](https://github.com/aws/aws-sdk-js-v3/commit/ecfe46ea1fd8b6e3812b75b3dc6c03554fb4b3fa))
20
+
21
+
22
+
23
+
24
+
25
+ # [3.100.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.99.0...v3.100.0) (2022-05-26)
26
+
27
+ **Note:** Version bump only for package @aws-sdk/client-route53-recovery-readiness
28
+
29
+
30
+
31
+
32
+
6
33
  # [3.99.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.98.0...v3.99.0) (2022-05-25)
7
34
 
8
35
  **Note:** Version bump only for package @aws-sdk/client-route53-recovery-readiness
@@ -5,6 +5,7 @@ const config_resolver_1 = require("@aws-sdk/config-resolver");
5
5
  const middleware_content_length_1 = require("@aws-sdk/middleware-content-length");
6
6
  const middleware_host_header_1 = require("@aws-sdk/middleware-host-header");
7
7
  const middleware_logger_1 = require("@aws-sdk/middleware-logger");
8
+ const middleware_recursion_detection_1 = require("@aws-sdk/middleware-recursion-detection");
8
9
  const middleware_retry_1 = require("@aws-sdk/middleware-retry");
9
10
  const middleware_signing_1 = require("@aws-sdk/middleware-signing");
10
11
  const middleware_user_agent_1 = require("@aws-sdk/middleware-user-agent");
@@ -25,6 +26,7 @@ class Route53RecoveryReadinessClient extends smithy_client_1.Client {
25
26
  this.middlewareStack.use((0, middleware_content_length_1.getContentLengthPlugin)(this.config));
26
27
  this.middlewareStack.use((0, middleware_host_header_1.getHostHeaderPlugin)(this.config));
27
28
  this.middlewareStack.use((0, middleware_logger_1.getLoggerPlugin)(this.config));
29
+ this.middlewareStack.use((0, middleware_recursion_detection_1.getRecursionDetectionPlugin)(this.config));
28
30
  this.middlewareStack.use((0, middleware_signing_1.getAwsAuthPlugin)(this.config));
29
31
  this.middlewareStack.use((0, middleware_user_agent_1.getUserAgentPlugin)(this.config));
30
32
  }
@@ -3,6 +3,7 @@ import { resolveEndpointsConfig, resolveRegionConfig, } from "@aws-sdk/config-re
3
3
  import { getContentLengthPlugin } from "@aws-sdk/middleware-content-length";
4
4
  import { getHostHeaderPlugin, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header";
5
5
  import { getLoggerPlugin } from "@aws-sdk/middleware-logger";
6
+ import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection";
6
7
  import { getRetryPlugin, resolveRetryConfig } from "@aws-sdk/middleware-retry";
7
8
  import { getAwsAuthPlugin, resolveAwsAuthConfig, } from "@aws-sdk/middleware-signing";
8
9
  import { getUserAgentPlugin, resolveUserAgentConfig, } from "@aws-sdk/middleware-user-agent";
@@ -25,6 +26,7 @@ var Route53RecoveryReadinessClient = (function (_super) {
25
26
  _this.middlewareStack.use(getContentLengthPlugin(_this.config));
26
27
  _this.middlewareStack.use(getHostHeaderPlugin(_this.config));
27
28
  _this.middlewareStack.use(getLoggerPlugin(_this.config));
29
+ _this.middlewareStack.use(getRecursionDetectionPlugin(_this.config));
28
30
  _this.middlewareStack.use(getAwsAuthPlugin(_this.config));
29
31
  _this.middlewareStack.use(getUserAgentPlugin(_this.config));
30
32
  return _this;
@@ -23,9 +23,7 @@ export interface CellOutput {
23
23
  /**
24
24
  * <p>Tags on the resources.</p>
25
25
  */
26
- Tags?: {
27
- [key: string]: string;
28
- };
26
+ Tags?: Record<string, string>;
29
27
  }
30
28
  export declare namespace CellOutput {
31
29
  /**
@@ -90,9 +88,7 @@ export interface ReadinessCheckOutput {
90
88
  /**
91
89
  * <p>A collection of tags associated with a resource.</p>
92
90
  */
93
- Tags?: {
94
- [key: string]: string;
95
- };
91
+ Tags?: Record<string, string>;
96
92
  }
97
93
  export declare namespace ReadinessCheckOutput {
98
94
  /**
@@ -159,9 +155,7 @@ export interface RecoveryGroupOutput {
159
155
  /**
160
156
  * <p>The tags associated with the recovery group.</p>
161
157
  */
162
- Tags?: {
163
- [key: string]: string;
164
- };
158
+ Tags?: Record<string, string>;
165
159
  }
166
160
  export declare namespace RecoveryGroupOutput {
167
161
  /**
@@ -330,9 +324,7 @@ export interface ResourceSetOutput {
330
324
  /**
331
325
  * <p>A collection of tags associated with a resource.</p>
332
326
  */
333
- Tags?: {
334
- [key: string]: string;
335
- };
327
+ Tags?: Record<string, string>;
336
328
  }
337
329
  export declare namespace ResourceSetOutput {
338
330
  /**
@@ -403,9 +395,7 @@ export interface CreateCellRequest {
403
395
  /**
404
396
  * <p>A collection of tags associated with a resource.</p>
405
397
  */
406
- Tags?: {
407
- [key: string]: string;
408
- };
398
+ Tags?: Record<string, string>;
409
399
  }
410
400
  export declare namespace CreateCellRequest {
411
401
  /**
@@ -433,9 +423,7 @@ export interface CreateCellResponse {
433
423
  /**
434
424
  * <p>Tags on the resources.</p>
435
425
  */
436
- Tags?: {
437
- [key: string]: string;
438
- };
426
+ Tags?: Record<string, string>;
439
427
  }
440
428
  export declare namespace CreateCellResponse {
441
429
  /**
@@ -515,9 +503,7 @@ export interface CreateReadinessCheckRequest {
515
503
  /**
516
504
  * <p>A collection of tags associated with a resource.</p>
517
505
  */
518
- Tags?: {
519
- [key: string]: string;
520
- };
506
+ Tags?: Record<string, string>;
521
507
  }
522
508
  export declare namespace CreateReadinessCheckRequest {
523
509
  /**
@@ -541,9 +527,7 @@ export interface CreateReadinessCheckResponse {
541
527
  /**
542
528
  * <p>A collection of tags associated with a resource.</p>
543
529
  */
544
- Tags?: {
545
- [key: string]: string;
546
- };
530
+ Tags?: Record<string, string>;
547
531
  }
548
532
  export declare namespace CreateReadinessCheckResponse {
549
533
  /**
@@ -563,9 +547,7 @@ export interface CreateRecoveryGroupRequest {
563
547
  /**
564
548
  * <p>A collection of tags associated with a resource.</p>
565
549
  */
566
- Tags?: {
567
- [key: string]: string;
568
- };
550
+ Tags?: Record<string, string>;
569
551
  }
570
552
  export declare namespace CreateRecoveryGroupRequest {
571
553
  /**
@@ -589,9 +571,7 @@ export interface CreateRecoveryGroupResponse {
589
571
  /**
590
572
  * <p>The tags associated with the recovery group.</p>
591
573
  */
592
- Tags?: {
593
- [key: string]: string;
594
- };
574
+ Tags?: Record<string, string>;
595
575
  }
596
576
  export declare namespace CreateRecoveryGroupResponse {
597
577
  /**
@@ -615,9 +595,7 @@ export interface CreateResourceSetRequest {
615
595
  /**
616
596
  * <p>A tag to associate with the parameters for a resource set.</p>
617
597
  */
618
- Tags?: {
619
- [key: string]: string;
620
- };
598
+ Tags?: Record<string, string>;
621
599
  }
622
600
  export declare namespace CreateResourceSetRequest {
623
601
  /**
@@ -645,9 +623,7 @@ export interface CreateResourceSetResponse {
645
623
  /**
646
624
  * <p>A collection of tags associated with a resource.</p>
647
625
  */
648
- Tags?: {
649
- [key: string]: string;
650
- };
626
+ Tags?: Record<string, string>;
651
627
  }
652
628
  export declare namespace CreateResourceSetResponse {
653
629
  /**
@@ -807,9 +783,7 @@ export interface GetCellResponse {
807
783
  /**
808
784
  * <p>Tags on the resources.</p>
809
785
  */
810
- Tags?: {
811
- [key: string]: string;
812
- };
786
+ Tags?: Record<string, string>;
813
787
  }
814
788
  export declare namespace GetCellResponse {
815
789
  /**
@@ -885,9 +859,7 @@ export interface GetReadinessCheckResponse {
885
859
  /**
886
860
  * <p>A collection of tags associated with a resource.</p>
887
861
  */
888
- Tags?: {
889
- [key: string]: string;
890
- };
862
+ Tags?: Record<string, string>;
891
863
  }
892
864
  export declare namespace GetReadinessCheckResponse {
893
865
  /**
@@ -1011,9 +983,7 @@ export interface GetRecoveryGroupResponse {
1011
983
  /**
1012
984
  * <p>The tags associated with the recovery group.</p>
1013
985
  */
1014
- Tags?: {
1015
- [key: string]: string;
1016
- };
986
+ Tags?: Record<string, string>;
1017
987
  }
1018
988
  export declare namespace GetRecoveryGroupResponse {
1019
989
  /**
@@ -1093,9 +1063,7 @@ export interface GetResourceSetResponse {
1093
1063
  /**
1094
1064
  * <p>A collection of tags associated with a resource.</p>
1095
1065
  */
1096
- Tags?: {
1097
- [key: string]: string;
1098
- };
1066
+ Tags?: Record<string, string>;
1099
1067
  }
1100
1068
  export declare namespace GetResourceSetResponse {
1101
1069
  /**
@@ -1315,9 +1283,7 @@ export interface ListTagsForResourcesResponse {
1315
1283
  /**
1316
1284
  * <p></p>
1317
1285
  */
1318
- Tags?: {
1319
- [key: string]: string;
1320
- };
1286
+ Tags?: Record<string, string>;
1321
1287
  }
1322
1288
  export declare namespace ListTagsForResourcesResponse {
1323
1289
  /**
@@ -1333,9 +1299,7 @@ export interface TagResourceRequest {
1333
1299
  /**
1334
1300
  * <p></p>
1335
1301
  */
1336
- Tags: {
1337
- [key: string]: string;
1338
- } | undefined;
1302
+ Tags: Record<string, string> | undefined;
1339
1303
  }
1340
1304
  export declare namespace TagResourceRequest {
1341
1305
  /**
@@ -1403,9 +1367,7 @@ export interface UpdateCellResponse {
1403
1367
  /**
1404
1368
  * <p>Tags on the resources.</p>
1405
1369
  */
1406
- Tags?: {
1407
- [key: string]: string;
1408
- };
1370
+ Tags?: Record<string, string>;
1409
1371
  }
1410
1372
  export declare namespace UpdateCellResponse {
1411
1373
  /**
@@ -1448,9 +1410,7 @@ export interface UpdateReadinessCheckResponse {
1448
1410
  /**
1449
1411
  * <p>A collection of tags associated with a resource.</p>
1450
1412
  */
1451
- Tags?: {
1452
- [key: string]: string;
1453
- };
1413
+ Tags?: Record<string, string>;
1454
1414
  }
1455
1415
  export declare namespace UpdateReadinessCheckResponse {
1456
1416
  /**
@@ -1493,9 +1453,7 @@ export interface UpdateRecoveryGroupResponse {
1493
1453
  /**
1494
1454
  * <p>The tags associated with the recovery group.</p>
1495
1455
  */
1496
- Tags?: {
1497
- [key: string]: string;
1498
- };
1456
+ Tags?: Record<string, string>;
1499
1457
  }
1500
1458
  export declare namespace UpdateRecoveryGroupResponse {
1501
1459
  /**
@@ -1546,9 +1504,7 @@ export interface UpdateResourceSetResponse {
1546
1504
  /**
1547
1505
  * <p>A collection of tags associated with a resource.</p>
1548
1506
  */
1549
- Tags?: {
1550
- [key: string]: string;
1551
- };
1507
+ Tags?: Record<string, string>;
1552
1508
  }
1553
1509
  export declare namespace UpdateResourceSetResponse {
1554
1510
  /**
@@ -11,9 +11,7 @@ export interface CellOutput {
11
11
 
12
12
  ParentReadinessScopes: string[] | undefined;
13
13
 
14
- Tags?: {
15
- [key: string]: string;
16
- };
14
+ Tags?: Record<string, string>;
17
15
  }
18
16
  export declare namespace CellOutput {
19
17
 
@@ -50,9 +48,7 @@ export interface ReadinessCheckOutput {
50
48
 
51
49
  ResourceSet: string | undefined;
52
50
 
53
- Tags?: {
54
- [key: string]: string;
55
- };
51
+ Tags?: Record<string, string>;
56
52
  }
57
53
  export declare namespace ReadinessCheckOutput {
58
54
 
@@ -93,9 +89,7 @@ export interface RecoveryGroupOutput {
93
89
 
94
90
  RecoveryGroupName: string | undefined;
95
91
 
96
- Tags?: {
97
- [key: string]: string;
98
- };
92
+ Tags?: Record<string, string>;
99
93
  }
100
94
  export declare namespace RecoveryGroupOutput {
101
95
 
@@ -190,9 +184,7 @@ export interface ResourceSetOutput {
190
184
 
191
185
  Resources: Resource[] | undefined;
192
186
 
193
- Tags?: {
194
- [key: string]: string;
195
- };
187
+ Tags?: Record<string, string>;
196
188
  }
197
189
  export declare namespace ResourceSetOutput {
198
190
 
@@ -235,9 +227,7 @@ export interface CreateCellRequest {
235
227
 
236
228
  Cells?: string[];
237
229
 
238
- Tags?: {
239
- [key: string]: string;
240
- };
230
+ Tags?: Record<string, string>;
241
231
  }
242
232
  export declare namespace CreateCellRequest {
243
233
 
@@ -253,9 +243,7 @@ export interface CreateCellResponse {
253
243
 
254
244
  ParentReadinessScopes?: string[];
255
245
 
256
- Tags?: {
257
- [key: string]: string;
258
- };
246
+ Tags?: Record<string, string>;
259
247
  }
260
248
  export declare namespace CreateCellResponse {
261
249
 
@@ -307,9 +295,7 @@ export interface CreateReadinessCheckRequest {
307
295
 
308
296
  ResourceSetName: string | undefined;
309
297
 
310
- Tags?: {
311
- [key: string]: string;
312
- };
298
+ Tags?: Record<string, string>;
313
299
  }
314
300
  export declare namespace CreateReadinessCheckRequest {
315
301
 
@@ -323,9 +309,7 @@ export interface CreateReadinessCheckResponse {
323
309
 
324
310
  ResourceSet?: string;
325
311
 
326
- Tags?: {
327
- [key: string]: string;
328
- };
312
+ Tags?: Record<string, string>;
329
313
  }
330
314
  export declare namespace CreateReadinessCheckResponse {
331
315
 
@@ -337,9 +321,7 @@ export interface CreateRecoveryGroupRequest {
337
321
 
338
322
  RecoveryGroupName: string | undefined;
339
323
 
340
- Tags?: {
341
- [key: string]: string;
342
- };
324
+ Tags?: Record<string, string>;
343
325
  }
344
326
  export declare namespace CreateRecoveryGroupRequest {
345
327
 
@@ -353,9 +335,7 @@ export interface CreateRecoveryGroupResponse {
353
335
 
354
336
  RecoveryGroupName?: string;
355
337
 
356
- Tags?: {
357
- [key: string]: string;
358
- };
338
+ Tags?: Record<string, string>;
359
339
  }
360
340
  export declare namespace CreateRecoveryGroupResponse {
361
341
 
@@ -369,9 +349,7 @@ export interface CreateResourceSetRequest {
369
349
 
370
350
  Resources: Resource[] | undefined;
371
351
 
372
- Tags?: {
373
- [key: string]: string;
374
- };
352
+ Tags?: Record<string, string>;
375
353
  }
376
354
  export declare namespace CreateResourceSetRequest {
377
355
 
@@ -387,9 +365,7 @@ export interface CreateResourceSetResponse {
387
365
 
388
366
  Resources?: Resource[];
389
367
 
390
- Tags?: {
391
- [key: string]: string;
392
- };
368
+ Tags?: Record<string, string>;
393
369
  }
394
370
  export declare namespace CreateResourceSetResponse {
395
371
 
@@ -491,9 +467,7 @@ export interface GetCellResponse {
491
467
 
492
468
  ParentReadinessScopes?: string[];
493
469
 
494
- Tags?: {
495
- [key: string]: string;
496
- };
470
+ Tags?: Record<string, string>;
497
471
  }
498
472
  export declare namespace GetCellResponse {
499
473
 
@@ -539,9 +513,7 @@ export interface GetReadinessCheckResponse {
539
513
 
540
514
  ResourceSet?: string;
541
515
 
542
- Tags?: {
543
- [key: string]: string;
544
- };
516
+ Tags?: Record<string, string>;
545
517
  }
546
518
  export declare namespace GetReadinessCheckResponse {
547
519
 
@@ -615,9 +587,7 @@ export interface GetRecoveryGroupResponse {
615
587
 
616
588
  RecoveryGroupName?: string;
617
589
 
618
- Tags?: {
619
- [key: string]: string;
620
- };
590
+ Tags?: Record<string, string>;
621
591
  }
622
592
  export declare namespace GetRecoveryGroupResponse {
623
593
 
@@ -665,9 +635,7 @@ export interface GetResourceSetResponse {
665
635
 
666
636
  Resources?: Resource[];
667
637
 
668
- Tags?: {
669
- [key: string]: string;
670
- };
638
+ Tags?: Record<string, string>;
671
639
  }
672
640
  export declare namespace GetResourceSetResponse {
673
641
 
@@ -805,9 +773,7 @@ export declare namespace ListTagsForResourcesRequest {
805
773
  }
806
774
  export interface ListTagsForResourcesResponse {
807
775
 
808
- Tags?: {
809
- [key: string]: string;
810
- };
776
+ Tags?: Record<string, string>;
811
777
  }
812
778
  export declare namespace ListTagsForResourcesResponse {
813
779
 
@@ -817,9 +783,7 @@ export interface TagResourceRequest {
817
783
 
818
784
  ResourceArn: string | undefined;
819
785
 
820
- Tags: {
821
- [key: string]: string;
822
- } | undefined;
786
+ Tags: Record<string, string> | undefined;
823
787
  }
824
788
  export declare namespace TagResourceRequest {
825
789
 
@@ -861,9 +825,7 @@ export interface UpdateCellResponse {
861
825
 
862
826
  ParentReadinessScopes?: string[];
863
827
 
864
- Tags?: {
865
- [key: string]: string;
866
- };
828
+ Tags?: Record<string, string>;
867
829
  }
868
830
  export declare namespace UpdateCellResponse {
869
831
 
@@ -888,9 +850,7 @@ export interface UpdateReadinessCheckResponse {
888
850
 
889
851
  ResourceSet?: string;
890
852
 
891
- Tags?: {
892
- [key: string]: string;
893
- };
853
+ Tags?: Record<string, string>;
894
854
  }
895
855
  export declare namespace UpdateReadinessCheckResponse {
896
856
 
@@ -915,9 +875,7 @@ export interface UpdateRecoveryGroupResponse {
915
875
 
916
876
  RecoveryGroupName?: string;
917
877
 
918
- Tags?: {
919
- [key: string]: string;
920
- };
878
+ Tags?: Record<string, string>;
921
879
  }
922
880
  export declare namespace UpdateRecoveryGroupResponse {
923
881
 
@@ -946,9 +904,7 @@ export interface UpdateResourceSetResponse {
946
904
 
947
905
  Resources?: Resource[];
948
906
 
949
- Tags?: {
950
- [key: string]: string;
951
- };
907
+ Tags?: Record<string, string>;
952
908
  }
953
909
  export declare namespace UpdateResourceSetResponse {
954
910
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-route53-recovery-readiness",
3
3
  "description": "AWS SDK for JavaScript Route53 Recovery Readiness Client for Node.js, Browser and React Native",
4
- "version": "3.99.0",
4
+ "version": "3.109.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,36 +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.99.0",
22
- "@aws-sdk/config-resolver": "3.80.0",
23
- "@aws-sdk/credential-provider-node": "3.99.0",
24
- "@aws-sdk/fetch-http-handler": "3.78.0",
25
- "@aws-sdk/hash-node": "3.78.0",
26
- "@aws-sdk/invalid-dependency": "3.78.0",
27
- "@aws-sdk/middleware-content-length": "3.78.0",
28
- "@aws-sdk/middleware-host-header": "3.78.0",
29
- "@aws-sdk/middleware-logger": "3.78.0",
30
- "@aws-sdk/middleware-retry": "3.80.0",
31
- "@aws-sdk/middleware-serde": "3.78.0",
32
- "@aws-sdk/middleware-signing": "3.78.0",
33
- "@aws-sdk/middleware-stack": "3.78.0",
34
- "@aws-sdk/middleware-user-agent": "3.78.0",
35
- "@aws-sdk/node-config-provider": "3.80.0",
36
- "@aws-sdk/node-http-handler": "3.94.0",
37
- "@aws-sdk/protocol-http": "3.78.0",
38
- "@aws-sdk/smithy-client": "3.99.0",
39
- "@aws-sdk/types": "3.78.0",
40
- "@aws-sdk/url-parser": "3.78.0",
41
- "@aws-sdk/util-base64-browser": "3.58.0",
21
+ "@aws-sdk/client-sts": "3.109.0",
22
+ "@aws-sdk/config-resolver": "3.109.0",
23
+ "@aws-sdk/credential-provider-node": "3.109.0",
24
+ "@aws-sdk/fetch-http-handler": "3.109.0",
25
+ "@aws-sdk/hash-node": "3.109.0",
26
+ "@aws-sdk/invalid-dependency": "3.109.0",
27
+ "@aws-sdk/middleware-content-length": "3.109.0",
28
+ "@aws-sdk/middleware-host-header": "3.109.0",
29
+ "@aws-sdk/middleware-logger": "3.109.0",
30
+ "@aws-sdk/middleware-recursion-detection": "3.109.0",
31
+ "@aws-sdk/middleware-retry": "3.109.0",
32
+ "@aws-sdk/middleware-serde": "3.109.0",
33
+ "@aws-sdk/middleware-signing": "3.109.0",
34
+ "@aws-sdk/middleware-stack": "3.109.0",
35
+ "@aws-sdk/middleware-user-agent": "3.109.0",
36
+ "@aws-sdk/node-config-provider": "3.109.0",
37
+ "@aws-sdk/node-http-handler": "3.109.0",
38
+ "@aws-sdk/protocol-http": "3.109.0",
39
+ "@aws-sdk/smithy-client": "3.109.0",
40
+ "@aws-sdk/types": "3.109.0",
41
+ "@aws-sdk/url-parser": "3.109.0",
42
+ "@aws-sdk/util-base64-browser": "3.109.0",
42
43
  "@aws-sdk/util-base64-node": "3.55.0",
43
44
  "@aws-sdk/util-body-length-browser": "3.55.0",
44
45
  "@aws-sdk/util-body-length-node": "3.55.0",
45
- "@aws-sdk/util-defaults-mode-browser": "3.99.0",
46
- "@aws-sdk/util-defaults-mode-node": "3.99.0",
47
- "@aws-sdk/util-user-agent-browser": "3.78.0",
48
- "@aws-sdk/util-user-agent-node": "3.80.0",
49
- "@aws-sdk/util-utf8-browser": "3.55.0",
50
- "@aws-sdk/util-utf8-node": "3.55.0",
46
+ "@aws-sdk/util-defaults-mode-browser": "3.109.0",
47
+ "@aws-sdk/util-defaults-mode-node": "3.109.0",
48
+ "@aws-sdk/util-user-agent-browser": "3.109.0",
49
+ "@aws-sdk/util-user-agent-node": "3.109.0",
50
+ "@aws-sdk/util-utf8-browser": "3.109.0",
51
+ "@aws-sdk/util-utf8-node": "3.109.0",
51
52
  "tslib": "^2.3.1"
52
53
  },
53
54
  "devDependencies": {