@aws-sdk/client-cloudwatch 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 { CloudWatchServiceException } from "./models/CloudWatchServiceException";
@@ -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 CloudWatch service.
4
+ */
5
+ export declare class CloudWatchServiceException extends __ServiceException {
6
+ /**
7
+ * @internal
8
+ */
9
+ constructor(options: __ServiceExceptionOptions);
10
+ }
@@ -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 { CloudWatchServiceException as __BaseException } from "./CloudWatchServiceException";
2
3
  export declare type AlarmType = "CompositeAlarm" | "MetricAlarm";
3
4
  export declare type HistoryItemType = "Action" | "ConfigurationUpdate" | "StateUpdate";
4
5
  /**
@@ -484,10 +485,14 @@ export declare namespace CompositeAlarm {
484
485
  /**
485
486
  * <p>More than one process tried to modify a resource at the same time.</p>
486
487
  */
487
- export interface ConcurrentModificationException extends __SmithyException, $MetadataBearer {
488
- name: "ConcurrentModificationException";
489
- $fault: "client";
488
+ export declare class ConcurrentModificationException extends __BaseException {
489
+ readonly name: "ConcurrentModificationException";
490
+ readonly $fault: "client";
490
491
  Message?: string;
492
+ /**
493
+ * @internal
494
+ */
495
+ constructor(opts: __ExceptionOptionType<ConcurrentModificationException, __BaseException>);
491
496
  }
492
497
  /**
493
498
  * <p>Represents a specific dashboard.</p>
@@ -539,19 +544,25 @@ export declare namespace DashboardValidationMessage {
539
544
  /**
540
545
  * <p>Some part of the dashboard data is invalid.</p>
541
546
  */
542
- export interface DashboardInvalidInputError extends __SmithyException, $MetadataBearer {
543
- name: "DashboardInvalidInputError";
544
- $fault: "client";
545
- message?: string;
547
+ export declare class DashboardInvalidInputError extends __BaseException {
548
+ readonly name: "DashboardInvalidInputError";
549
+ readonly $fault: "client";
546
550
  dashboardValidationMessages?: DashboardValidationMessage[];
551
+ /**
552
+ * @internal
553
+ */
554
+ constructor(opts: __ExceptionOptionType<DashboardInvalidInputError, __BaseException>);
547
555
  }
548
556
  /**
549
557
  * <p>The specified dashboard does not exist.</p>
550
558
  */
551
- export interface DashboardNotFoundError extends __SmithyException, $MetadataBearer {
552
- name: "DashboardNotFoundError";
553
- $fault: "client";
554
- message?: string;
559
+ export declare class DashboardNotFoundError extends __BaseException {
560
+ readonly name: "DashboardNotFoundError";
561
+ readonly $fault: "client";
562
+ /**
563
+ * @internal
564
+ */
565
+ constructor(opts: __ExceptionOptionType<DashboardNotFoundError, __BaseException>);
555
566
  }
556
567
  /**
557
568
  * <p>Encapsulates the statistical data that CloudWatch computes from metric data.</p>
@@ -614,13 +625,13 @@ export declare namespace DeleteAlarmsInput {
614
625
  /**
615
626
  * <p>The named resource does not exist.</p>
616
627
  */
617
- export interface ResourceNotFound extends __SmithyException, $MetadataBearer {
618
- name: "ResourceNotFound";
619
- $fault: "client";
628
+ export declare class ResourceNotFound extends __BaseException {
629
+ readonly name: "ResourceNotFound";
630
+ readonly $fault: "client";
620
631
  /**
621
- * <p></p>
632
+ * @internal
622
633
  */
623
- message?: string;
634
+ constructor(opts: __ExceptionOptionType<ResourceNotFound, __BaseException>);
624
635
  }
625
636
  export interface DeleteAnomalyDetectorInput {
626
637
  /**
@@ -734,56 +745,64 @@ export declare namespace DeleteAnomalyDetectorOutput {
734
745
  /**
735
746
  * <p>Request processing has failed due to some unknown error, exception, or failure.</p>
736
747
  */
737
- export interface InternalServiceFault extends __SmithyException, $MetadataBearer {
738
- name: "InternalServiceFault";
739
- $fault: "server";
748
+ export declare class InternalServiceFault extends __BaseException {
749
+ readonly name: "InternalServiceFault";
750
+ readonly $fault: "server";
740
751
  /**
741
752
  * <p></p>
742
753
  */
743
754
  Message?: string;
755
+ /**
756
+ * @internal
757
+ */
758
+ constructor(opts: __ExceptionOptionType<InternalServiceFault, __BaseException>);
744
759
  }
745
760
  /**
746
761
  * <p>Parameters were used together that cannot be used together.</p>
747
762
  */
748
- export interface InvalidParameterCombinationException extends __SmithyException, $MetadataBearer {
749
- name: "InvalidParameterCombinationException";
750
- $fault: "client";
763
+ export declare class InvalidParameterCombinationException extends __BaseException {
764
+ readonly name: "InvalidParameterCombinationException";
765
+ readonly $fault: "client";
751
766
  /**
752
- * <p></p>
767
+ * @internal
753
768
  */
754
- message?: string;
769
+ constructor(opts: __ExceptionOptionType<InvalidParameterCombinationException, __BaseException>);
755
770
  }
756
771
  /**
757
772
  * <p>The value of an input parameter is bad or out-of-range.</p>
758
773
  */
759
- export interface InvalidParameterValueException extends __SmithyException, $MetadataBearer {
760
- name: "InvalidParameterValueException";
761
- $fault: "client";
774
+ export declare class InvalidParameterValueException extends __BaseException {
775
+ readonly name: "InvalidParameterValueException";
776
+ readonly $fault: "client";
762
777
  /**
763
- * <p></p>
778
+ * @internal
764
779
  */
765
- message?: string;
780
+ constructor(opts: __ExceptionOptionType<InvalidParameterValueException, __BaseException>);
766
781
  }
767
782
  /**
768
783
  * <p>An input parameter that is required is missing.</p>
769
784
  */
770
- export interface MissingRequiredParameterException extends __SmithyException, $MetadataBearer {
771
- name: "MissingRequiredParameterException";
772
- $fault: "client";
785
+ export declare class MissingRequiredParameterException extends __BaseException {
786
+ readonly name: "MissingRequiredParameterException";
787
+ readonly $fault: "client";
773
788
  /**
774
- * <p></p>
789
+ * @internal
775
790
  */
776
- message?: string;
791
+ constructor(opts: __ExceptionOptionType<MissingRequiredParameterException, __BaseException>);
777
792
  }
778
793
  /**
779
794
  * <p>The named resource does not exist.</p>
780
795
  */
781
- export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
782
- name: "ResourceNotFoundException";
783
- $fault: "client";
796
+ export declare class ResourceNotFoundException extends __BaseException {
797
+ readonly name: "ResourceNotFoundException";
798
+ readonly $fault: "client";
784
799
  ResourceType?: string;
785
800
  ResourceId?: string;
786
801
  Message?: string;
802
+ /**
803
+ * @internal
804
+ */
805
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
787
806
  }
788
807
  export interface DeleteDashboardsInput {
789
808
  /**
@@ -915,13 +934,13 @@ export declare namespace DescribeAlarmHistoryOutput {
915
934
  /**
916
935
  * <p>The next token specified is invalid.</p>
917
936
  */
918
- export interface InvalidNextToken extends __SmithyException, $MetadataBearer {
919
- name: "InvalidNextToken";
920
- $fault: "client";
937
+ export declare class InvalidNextToken extends __BaseException {
938
+ readonly name: "InvalidNextToken";
939
+ readonly $fault: "client";
921
940
  /**
922
- * <p></p>
941
+ * @internal
923
942
  */
924
- message?: string;
943
+ constructor(opts: __ExceptionOptionType<InvalidNextToken, __BaseException>);
925
944
  }
926
945
  export interface DescribeAlarmsInput {
927
946
  /**
@@ -1434,10 +1453,14 @@ export declare namespace EnableInsightRulesOutput {
1434
1453
  /**
1435
1454
  * <p>The operation exceeded one or more limits.</p>
1436
1455
  */
1437
- export interface LimitExceededException extends __SmithyException, $MetadataBearer {
1438
- name: "LimitExceededException";
1439
- $fault: "client";
1456
+ export declare class LimitExceededException extends __BaseException {
1457
+ readonly name: "LimitExceededException";
1458
+ readonly $fault: "client";
1440
1459
  Message?: string;
1460
+ /**
1461
+ * @internal
1462
+ */
1463
+ constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
1441
1464
  }
1442
1465
  export interface GetDashboardInput {
1443
1466
  /**
@@ -2508,13 +2531,13 @@ export declare namespace PutAnomalyDetectorOutput {
2508
2531
  /**
2509
2532
  * <p>The quota for alarms for this customer has already been reached.</p>
2510
2533
  */
2511
- export interface LimitExceededFault extends __SmithyException, $MetadataBearer {
2512
- name: "LimitExceededFault";
2513
- $fault: "client";
2534
+ export declare class LimitExceededFault extends __BaseException {
2535
+ readonly name: "LimitExceededFault";
2536
+ readonly $fault: "client";
2514
2537
  /**
2515
- * <p></p>
2538
+ * @internal
2516
2539
  */
2517
- message?: string;
2540
+ constructor(opts: __ExceptionOptionType<LimitExceededFault, __BaseException>);
2518
2541
  }
2519
2542
  export interface PutCompositeAlarmInput {
2520
2543
  /**
@@ -3157,13 +3180,13 @@ export declare namespace PutMetricStreamOutput {
3157
3180
  /**
3158
3181
  * <p>Data was not syntactically valid JSON.</p>
3159
3182
  */
3160
- export interface InvalidFormatFault extends __SmithyException, $MetadataBearer {
3161
- name: "InvalidFormatFault";
3162
- $fault: "client";
3183
+ export declare class InvalidFormatFault extends __BaseException {
3184
+ readonly name: "InvalidFormatFault";
3185
+ readonly $fault: "client";
3163
3186
  /**
3164
- * <p></p>
3187
+ * @internal
3165
3188
  */
3166
- message?: string;
3189
+ constructor(opts: __ExceptionOptionType<InvalidFormatFault, __BaseException>);
3167
3190
  }
3168
3191
  export interface SetAlarmStateInput {
3169
3192
  /**
@@ -4,3 +4,4 @@ export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
6
  export * from "./waiters";
7
+ export { CloudWatchServiceException } from "./models/CloudWatchServiceException";
@@ -0,0 +1,6 @@
1
+ import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
+
3
+ export declare class CloudWatchServiceException extends __ServiceException {
4
+
5
+ constructor(options: __ServiceExceptionOptions);
6
+ }
@@ -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 { CloudWatchServiceException as __BaseException } from "./CloudWatchServiceException";
2
3
  export declare type AlarmType = "CompositeAlarm" | "MetricAlarm";
3
4
  export declare type HistoryItemType = "Action" | "ConfigurationUpdate" | "StateUpdate";
4
5
 
@@ -206,10 +207,12 @@ export declare namespace CompositeAlarm {
206
207
  const filterSensitiveLog: (obj: CompositeAlarm) => any;
207
208
  }
208
209
 
209
- export interface ConcurrentModificationException extends __SmithyException, $MetadataBearer {
210
- name: "ConcurrentModificationException";
211
- $fault: "client";
210
+ export declare class ConcurrentModificationException extends __BaseException {
211
+ readonly name: "ConcurrentModificationException";
212
+ readonly $fault: "client";
212
213
  Message?: string;
214
+
215
+ constructor(opts: __ExceptionOptionType<ConcurrentModificationException, __BaseException>);
213
216
  }
214
217
 
215
218
  export interface DashboardEntry {
@@ -238,17 +241,19 @@ export declare namespace DashboardValidationMessage {
238
241
  const filterSensitiveLog: (obj: DashboardValidationMessage) => any;
239
242
  }
240
243
 
241
- export interface DashboardInvalidInputError extends __SmithyException, $MetadataBearer {
242
- name: "DashboardInvalidInputError";
243
- $fault: "client";
244
- message?: string;
244
+ export declare class DashboardInvalidInputError extends __BaseException {
245
+ readonly name: "DashboardInvalidInputError";
246
+ readonly $fault: "client";
245
247
  dashboardValidationMessages?: DashboardValidationMessage[];
248
+
249
+ constructor(opts: __ExceptionOptionType<DashboardInvalidInputError, __BaseException>);
246
250
  }
247
251
 
248
- export interface DashboardNotFoundError extends __SmithyException, $MetadataBearer {
249
- name: "DashboardNotFoundError";
250
- $fault: "client";
251
- message?: string;
252
+ export declare class DashboardNotFoundError extends __BaseException {
253
+ readonly name: "DashboardNotFoundError";
254
+ readonly $fault: "client";
255
+
256
+ constructor(opts: __ExceptionOptionType<DashboardNotFoundError, __BaseException>);
252
257
  }
253
258
 
254
259
  export interface Datapoint {
@@ -284,11 +289,11 @@ export declare namespace DeleteAlarmsInput {
284
289
  const filterSensitiveLog: (obj: DeleteAlarmsInput) => any;
285
290
  }
286
291
 
287
- export interface ResourceNotFound extends __SmithyException, $MetadataBearer {
288
- name: "ResourceNotFound";
289
- $fault: "client";
292
+ export declare class ResourceNotFound extends __BaseException {
293
+ readonly name: "ResourceNotFound";
294
+ readonly $fault: "client";
290
295
 
291
- message?: string;
296
+ constructor(opts: __ExceptionOptionType<ResourceNotFound, __BaseException>);
292
297
  }
293
298
  export interface DeleteAnomalyDetectorInput {
294
299
 
@@ -315,40 +320,44 @@ export declare namespace DeleteAnomalyDetectorOutput {
315
320
  const filterSensitiveLog: (obj: DeleteAnomalyDetectorOutput) => any;
316
321
  }
317
322
 
318
- export interface InternalServiceFault extends __SmithyException, $MetadataBearer {
319
- name: "InternalServiceFault";
320
- $fault: "server";
323
+ export declare class InternalServiceFault extends __BaseException {
324
+ readonly name: "InternalServiceFault";
325
+ readonly $fault: "server";
321
326
 
322
327
  Message?: string;
328
+
329
+ constructor(opts: __ExceptionOptionType<InternalServiceFault, __BaseException>);
323
330
  }
324
331
 
325
- export interface InvalidParameterCombinationException extends __SmithyException, $MetadataBearer {
326
- name: "InvalidParameterCombinationException";
327
- $fault: "client";
332
+ export declare class InvalidParameterCombinationException extends __BaseException {
333
+ readonly name: "InvalidParameterCombinationException";
334
+ readonly $fault: "client";
328
335
 
329
- message?: string;
336
+ constructor(opts: __ExceptionOptionType<InvalidParameterCombinationException, __BaseException>);
330
337
  }
331
338
 
332
- export interface InvalidParameterValueException extends __SmithyException, $MetadataBearer {
333
- name: "InvalidParameterValueException";
334
- $fault: "client";
339
+ export declare class InvalidParameterValueException extends __BaseException {
340
+ readonly name: "InvalidParameterValueException";
341
+ readonly $fault: "client";
335
342
 
336
- message?: string;
343
+ constructor(opts: __ExceptionOptionType<InvalidParameterValueException, __BaseException>);
337
344
  }
338
345
 
339
- export interface MissingRequiredParameterException extends __SmithyException, $MetadataBearer {
340
- name: "MissingRequiredParameterException";
341
- $fault: "client";
346
+ export declare class MissingRequiredParameterException extends __BaseException {
347
+ readonly name: "MissingRequiredParameterException";
348
+ readonly $fault: "client";
342
349
 
343
- message?: string;
350
+ constructor(opts: __ExceptionOptionType<MissingRequiredParameterException, __BaseException>);
344
351
  }
345
352
 
346
- export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
347
- name: "ResourceNotFoundException";
348
- $fault: "client";
353
+ export declare class ResourceNotFoundException extends __BaseException {
354
+ readonly name: "ResourceNotFoundException";
355
+ readonly $fault: "client";
349
356
  ResourceType?: string;
350
357
  ResourceId?: string;
351
358
  Message?: string;
359
+
360
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
352
361
  }
353
362
  export interface DeleteDashboardsInput {
354
363
 
@@ -431,11 +440,11 @@ export declare namespace DescribeAlarmHistoryOutput {
431
440
  const filterSensitiveLog: (obj: DescribeAlarmHistoryOutput) => any;
432
441
  }
433
442
 
434
- export interface InvalidNextToken extends __SmithyException, $MetadataBearer {
435
- name: "InvalidNextToken";
436
- $fault: "client";
443
+ export declare class InvalidNextToken extends __BaseException {
444
+ readonly name: "InvalidNextToken";
445
+ readonly $fault: "client";
437
446
 
438
- message?: string;
447
+ constructor(opts: __ExceptionOptionType<InvalidNextToken, __BaseException>);
439
448
  }
440
449
  export interface DescribeAlarmsInput {
441
450
 
@@ -686,10 +695,12 @@ export declare namespace EnableInsightRulesOutput {
686
695
  const filterSensitiveLog: (obj: EnableInsightRulesOutput) => any;
687
696
  }
688
697
 
689
- export interface LimitExceededException extends __SmithyException, $MetadataBearer {
690
- name: "LimitExceededException";
691
- $fault: "client";
698
+ export declare class LimitExceededException extends __BaseException {
699
+ readonly name: "LimitExceededException";
700
+ readonly $fault: "client";
692
701
  Message?: string;
702
+
703
+ constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
693
704
  }
694
705
  export interface GetDashboardInput {
695
706
 
@@ -1115,11 +1126,11 @@ export declare namespace PutAnomalyDetectorOutput {
1115
1126
  const filterSensitiveLog: (obj: PutAnomalyDetectorOutput) => any;
1116
1127
  }
1117
1128
 
1118
- export interface LimitExceededFault extends __SmithyException, $MetadataBearer {
1119
- name: "LimitExceededFault";
1120
- $fault: "client";
1129
+ export declare class LimitExceededFault extends __BaseException {
1130
+ readonly name: "LimitExceededFault";
1131
+ readonly $fault: "client";
1121
1132
 
1122
- message?: string;
1133
+ constructor(opts: __ExceptionOptionType<LimitExceededFault, __BaseException>);
1123
1134
  }
1124
1135
  export interface PutCompositeAlarmInput {
1125
1136
 
@@ -1310,11 +1321,11 @@ export declare namespace PutMetricStreamOutput {
1310
1321
  const filterSensitiveLog: (obj: PutMetricStreamOutput) => any;
1311
1322
  }
1312
1323
 
1313
- export interface InvalidFormatFault extends __SmithyException, $MetadataBearer {
1314
- name: "InvalidFormatFault";
1315
- $fault: "client";
1324
+ export declare class InvalidFormatFault extends __BaseException {
1325
+ readonly name: "InvalidFormatFault";
1326
+ readonly $fault: "client";
1316
1327
 
1317
- message?: string;
1328
+ constructor(opts: __ExceptionOptionType<InvalidFormatFault, __BaseException>);
1318
1329
  }
1319
1330
  export interface SetAlarmStateInput {
1320
1331
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-cloudwatch",
3
3
  "description": "AWS SDK for JavaScript Cloudwatch 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
  "entities": "2.2.0",
53
53
  "fast-xml-parser": "3.19.0",
54
54
  "tslib": "^2.3.0"