@aws-sdk/client-health 3.132.0 → 3.137.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.
Files changed (28) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/dist-cjs/commands/DescribeAffectedAccountsForOrganizationCommand.js +2 -2
  3. package/dist-cjs/commands/DescribeAffectedEntitiesCommand.js +2 -2
  4. package/dist-cjs/commands/DescribeAffectedEntitiesForOrganizationCommand.js +2 -2
  5. package/dist-cjs/commands/DescribeEntityAggregatesCommand.js +2 -2
  6. package/dist-cjs/commands/DescribeEventAggregatesCommand.js +2 -2
  7. package/dist-cjs/commands/DescribeEventDetailsCommand.js +2 -2
  8. package/dist-cjs/commands/DescribeEventDetailsForOrganizationCommand.js +2 -2
  9. package/dist-cjs/commands/DescribeEventTypesCommand.js +2 -2
  10. package/dist-cjs/commands/DescribeEventsCommand.js +2 -2
  11. package/dist-cjs/commands/DescribeEventsForOrganizationCommand.js +2 -2
  12. package/dist-cjs/commands/DescribeHealthServiceStatusForOrganizationCommand.js +1 -1
  13. package/dist-cjs/models/models_0.js +157 -235
  14. package/dist-es/commands/DescribeAffectedAccountsForOrganizationCommand.js +3 -3
  15. package/dist-es/commands/DescribeAffectedEntitiesCommand.js +3 -3
  16. package/dist-es/commands/DescribeAffectedEntitiesForOrganizationCommand.js +3 -3
  17. package/dist-es/commands/DescribeEntityAggregatesCommand.js +3 -3
  18. package/dist-es/commands/DescribeEventAggregatesCommand.js +3 -3
  19. package/dist-es/commands/DescribeEventDetailsCommand.js +3 -3
  20. package/dist-es/commands/DescribeEventDetailsForOrganizationCommand.js +3 -3
  21. package/dist-es/commands/DescribeEventTypesCommand.js +3 -3
  22. package/dist-es/commands/DescribeEventsCommand.js +3 -3
  23. package/dist-es/commands/DescribeEventsForOrganizationCommand.js +3 -3
  24. package/dist-es/commands/DescribeHealthServiceStatusForOrganizationCommand.js +2 -2
  25. package/dist-es/models/models_0.js +39 -156
  26. package/dist-types/models/models_0.d.ts +156 -234
  27. package/dist-types/ts3.4/models/models_0.d.ts +78 -156
  28. package/package.json +6 -6
@@ -24,10 +24,6 @@ export interface AffectedEntity {
24
24
 
25
25
  tags?: Record<string, string>;
26
26
  }
27
- export declare namespace AffectedEntity {
28
-
29
- const filterSensitiveLog: (obj: AffectedEntity) => any;
30
- }
31
27
  export interface DescribeAffectedAccountsForOrganizationRequest {
32
28
 
33
29
  eventArn: string | undefined;
@@ -36,10 +32,6 @@ export interface DescribeAffectedAccountsForOrganizationRequest {
36
32
 
37
33
  maxResults?: number;
38
34
  }
39
- export declare namespace DescribeAffectedAccountsForOrganizationRequest {
40
-
41
- const filterSensitiveLog: (obj: DescribeAffectedAccountsForOrganizationRequest) => any;
42
- }
43
35
  export declare enum EventScopeCode {
44
36
  ACCOUNT_SPECIFIC = "ACCOUNT_SPECIFIC",
45
37
  NONE = "NONE",
@@ -53,10 +45,6 @@ export interface DescribeAffectedAccountsForOrganizationResponse {
53
45
 
54
46
  nextToken?: string;
55
47
  }
56
- export declare namespace DescribeAffectedAccountsForOrganizationResponse {
57
-
58
- const filterSensitiveLog: (obj: DescribeAffectedAccountsForOrganizationResponse) => any;
59
- }
60
48
 
61
49
  export declare class InvalidPaginationToken extends __BaseException {
62
50
  readonly name: "InvalidPaginationToken";
@@ -71,10 +59,6 @@ export interface DateTimeRange {
71
59
 
72
60
  to?: Date;
73
61
  }
74
- export declare namespace DateTimeRange {
75
-
76
- const filterSensitiveLog: (obj: DateTimeRange) => any;
77
- }
78
62
 
79
63
  export interface EntityFilter {
80
64
 
@@ -90,10 +74,6 @@ export interface EntityFilter {
90
74
 
91
75
  statusCodes?: (EntityStatusCode | string)[];
92
76
  }
93
- export declare namespace EntityFilter {
94
-
95
- const filterSensitiveLog: (obj: EntityFilter) => any;
96
- }
97
77
  export interface DescribeAffectedEntitiesRequest {
98
78
 
99
79
  filter: EntityFilter | undefined;
@@ -104,20 +84,12 @@ export interface DescribeAffectedEntitiesRequest {
104
84
 
105
85
  maxResults?: number;
106
86
  }
107
- export declare namespace DescribeAffectedEntitiesRequest {
108
-
109
- const filterSensitiveLog: (obj: DescribeAffectedEntitiesRequest) => any;
110
- }
111
87
  export interface DescribeAffectedEntitiesResponse {
112
88
 
113
89
  entities?: AffectedEntity[];
114
90
 
115
91
  nextToken?: string;
116
92
  }
117
- export declare namespace DescribeAffectedEntitiesResponse {
118
-
119
- const filterSensitiveLog: (obj: DescribeAffectedEntitiesResponse) => any;
120
- }
121
93
 
122
94
  export declare class UnsupportedLocale extends __BaseException {
123
95
  readonly name: "UnsupportedLocale";
@@ -132,10 +104,6 @@ export interface EventAccountFilter {
132
104
 
133
105
  awsAccountId?: string;
134
106
  }
135
- export declare namespace EventAccountFilter {
136
-
137
- const filterSensitiveLog: (obj: EventAccountFilter) => any;
138
- }
139
107
  export interface DescribeAffectedEntitiesForOrganizationRequest {
140
108
 
141
109
  organizationEntityFilters: EventAccountFilter[] | undefined;
@@ -146,10 +114,6 @@ export interface DescribeAffectedEntitiesForOrganizationRequest {
146
114
 
147
115
  maxResults?: number;
148
116
  }
149
- export declare namespace DescribeAffectedEntitiesForOrganizationRequest {
150
-
151
- const filterSensitiveLog: (obj: DescribeAffectedEntitiesForOrganizationRequest) => any;
152
- }
153
117
 
154
118
  export interface OrganizationAffectedEntitiesErrorItem {
155
119
 
@@ -161,10 +125,6 @@ export interface OrganizationAffectedEntitiesErrorItem {
161
125
 
162
126
  errorMessage?: string;
163
127
  }
164
- export declare namespace OrganizationAffectedEntitiesErrorItem {
165
-
166
- const filterSensitiveLog: (obj: OrganizationAffectedEntitiesErrorItem) => any;
167
- }
168
128
  export interface DescribeAffectedEntitiesForOrganizationResponse {
169
129
 
170
130
  entities?: AffectedEntity[];
@@ -173,18 +133,10 @@ export interface DescribeAffectedEntitiesForOrganizationResponse {
173
133
 
174
134
  nextToken?: string;
175
135
  }
176
- export declare namespace DescribeAffectedEntitiesForOrganizationResponse {
177
-
178
- const filterSensitiveLog: (obj: DescribeAffectedEntitiesForOrganizationResponse) => any;
179
- }
180
136
  export interface DescribeEntityAggregatesRequest {
181
137
 
182
138
  eventArns?: string[];
183
139
  }
184
- export declare namespace DescribeEntityAggregatesRequest {
185
-
186
- const filterSensitiveLog: (obj: DescribeEntityAggregatesRequest) => any;
187
- }
188
140
 
189
141
  export interface EntityAggregate {
190
142
 
@@ -192,18 +144,10 @@ export interface EntityAggregate {
192
144
 
193
145
  count?: number;
194
146
  }
195
- export declare namespace EntityAggregate {
196
-
197
- const filterSensitiveLog: (obj: EntityAggregate) => any;
198
- }
199
147
  export interface DescribeEntityAggregatesResponse {
200
148
 
201
149
  entityAggregates?: EntityAggregate[];
202
150
  }
203
- export declare namespace DescribeEntityAggregatesResponse {
204
-
205
- const filterSensitiveLog: (obj: DescribeEntityAggregatesResponse) => any;
206
- }
207
151
  export declare enum EventAggregateField {
208
152
  EventTypeCategory = "eventTypeCategory"
209
153
  }
@@ -247,10 +191,6 @@ export interface EventFilter {
247
191
 
248
192
  eventStatusCodes?: (EventStatusCode | string)[];
249
193
  }
250
- export declare namespace EventFilter {
251
-
252
- const filterSensitiveLog: (obj: EventFilter) => any;
253
- }
254
194
  export interface DescribeEventAggregatesRequest {
255
195
 
256
196
  filter?: EventFilter;
@@ -261,10 +201,6 @@ export interface DescribeEventAggregatesRequest {
261
201
 
262
202
  nextToken?: string;
263
203
  }
264
- export declare namespace DescribeEventAggregatesRequest {
265
-
266
- const filterSensitiveLog: (obj: DescribeEventAggregatesRequest) => any;
267
- }
268
204
 
269
205
  export interface EventAggregate {
270
206
 
@@ -272,30 +208,18 @@ export interface EventAggregate {
272
208
 
273
209
  count?: number;
274
210
  }
275
- export declare namespace EventAggregate {
276
-
277
- const filterSensitiveLog: (obj: EventAggregate) => any;
278
- }
279
211
  export interface DescribeEventAggregatesResponse {
280
212
 
281
213
  eventAggregates?: EventAggregate[];
282
214
 
283
215
  nextToken?: string;
284
216
  }
285
- export declare namespace DescribeEventAggregatesResponse {
286
-
287
- const filterSensitiveLog: (obj: DescribeEventAggregatesResponse) => any;
288
- }
289
217
  export interface DescribeEventDetailsRequest {
290
218
 
291
219
  eventArns: string[] | undefined;
292
220
 
293
221
  locale?: string;
294
222
  }
295
- export declare namespace DescribeEventDetailsRequest {
296
-
297
- const filterSensitiveLog: (obj: DescribeEventDetailsRequest) => any;
298
- }
299
223
 
300
224
  export interface EventDetailsErrorItem {
301
225
 
@@ -305,10 +229,6 @@ export interface EventDetailsErrorItem {
305
229
 
306
230
  errorMessage?: string;
307
231
  }
308
- export declare namespace EventDetailsErrorItem {
309
-
310
- const filterSensitiveLog: (obj: EventDetailsErrorItem) => any;
311
- }
312
232
 
313
233
  export interface Event {
314
234
 
@@ -334,19 +254,11 @@ export interface Event {
334
254
 
335
255
  eventScopeCode?: EventScopeCode | string;
336
256
  }
337
- export declare namespace Event {
338
-
339
- const filterSensitiveLog: (obj: Event) => any;
340
- }
341
257
 
342
258
  export interface EventDescription {
343
259
 
344
260
  latestDescription?: string;
345
261
  }
346
- export declare namespace EventDescription {
347
-
348
- const filterSensitiveLog: (obj: EventDescription) => any;
349
- }
350
262
 
351
263
  export interface EventDetails {
352
264
 
@@ -356,30 +268,18 @@ export interface EventDetails {
356
268
 
357
269
  eventMetadata?: Record<string, string>;
358
270
  }
359
- export declare namespace EventDetails {
360
-
361
- const filterSensitiveLog: (obj: EventDetails) => any;
362
- }
363
271
  export interface DescribeEventDetailsResponse {
364
272
 
365
273
  successfulSet?: EventDetails[];
366
274
 
367
275
  failedSet?: EventDetailsErrorItem[];
368
276
  }
369
- export declare namespace DescribeEventDetailsResponse {
370
-
371
- const filterSensitiveLog: (obj: DescribeEventDetailsResponse) => any;
372
- }
373
277
  export interface DescribeEventDetailsForOrganizationRequest {
374
278
 
375
279
  organizationEventDetailFilters: EventAccountFilter[] | undefined;
376
280
 
377
281
  locale?: string;
378
282
  }
379
- export declare namespace DescribeEventDetailsForOrganizationRequest {
380
-
381
- const filterSensitiveLog: (obj: DescribeEventDetailsForOrganizationRequest) => any;
382
- }
383
283
 
384
284
  export interface OrganizationEventDetailsErrorItem {
385
285
 
@@ -391,10 +291,6 @@ export interface OrganizationEventDetailsErrorItem {
391
291
 
392
292
  errorMessage?: string;
393
293
  }
394
- export declare namespace OrganizationEventDetailsErrorItem {
395
-
396
- const filterSensitiveLog: (obj: OrganizationEventDetailsErrorItem) => any;
397
- }
398
294
 
399
295
  export interface OrganizationEventDetails {
400
296
 
@@ -406,20 +302,12 @@ export interface OrganizationEventDetails {
406
302
 
407
303
  eventMetadata?: Record<string, string>;
408
304
  }
409
- export declare namespace OrganizationEventDetails {
410
-
411
- const filterSensitiveLog: (obj: OrganizationEventDetails) => any;
412
- }
413
305
  export interface DescribeEventDetailsForOrganizationResponse {
414
306
 
415
307
  successfulSet?: OrganizationEventDetails[];
416
308
 
417
309
  failedSet?: OrganizationEventDetailsErrorItem[];
418
310
  }
419
- export declare namespace DescribeEventDetailsForOrganizationResponse {
420
-
421
- const filterSensitiveLog: (obj: DescribeEventDetailsForOrganizationResponse) => any;
422
- }
423
311
  export interface DescribeEventsRequest {
424
312
 
425
313
  filter?: EventFilter;
@@ -430,20 +318,12 @@ export interface DescribeEventsRequest {
430
318
 
431
319
  locale?: string;
432
320
  }
433
- export declare namespace DescribeEventsRequest {
434
-
435
- const filterSensitiveLog: (obj: DescribeEventsRequest) => any;
436
- }
437
321
  export interface DescribeEventsResponse {
438
322
 
439
323
  events?: Event[];
440
324
 
441
325
  nextToken?: string;
442
326
  }
443
- export declare namespace DescribeEventsResponse {
444
-
445
- const filterSensitiveLog: (obj: DescribeEventsResponse) => any;
446
- }
447
327
 
448
328
  export interface OrganizationEventFilter {
449
329
 
@@ -469,10 +349,6 @@ export interface OrganizationEventFilter {
469
349
 
470
350
  eventStatusCodes?: (EventStatusCode | string)[];
471
351
  }
472
- export declare namespace OrganizationEventFilter {
473
-
474
- const filterSensitiveLog: (obj: OrganizationEventFilter) => any;
475
- }
476
352
  export interface DescribeEventsForOrganizationRequest {
477
353
 
478
354
  filter?: OrganizationEventFilter;
@@ -483,10 +359,6 @@ export interface DescribeEventsForOrganizationRequest {
483
359
 
484
360
  locale?: string;
485
361
  }
486
- export declare namespace DescribeEventsForOrganizationRequest {
487
-
488
- const filterSensitiveLog: (obj: DescribeEventsForOrganizationRequest) => any;
489
- }
490
362
 
491
363
  export interface OrganizationEvent {
492
364
 
@@ -510,20 +382,12 @@ export interface OrganizationEvent {
510
382
 
511
383
  statusCode?: EventStatusCode | string;
512
384
  }
513
- export declare namespace OrganizationEvent {
514
-
515
- const filterSensitiveLog: (obj: OrganizationEvent) => any;
516
- }
517
385
  export interface DescribeEventsForOrganizationResponse {
518
386
 
519
387
  events?: OrganizationEvent[];
520
388
 
521
389
  nextToken?: string;
522
390
  }
523
- export declare namespace DescribeEventsForOrganizationResponse {
524
-
525
- const filterSensitiveLog: (obj: DescribeEventsForOrganizationResponse) => any;
526
- }
527
391
 
528
392
  export interface EventTypeFilter {
529
393
 
@@ -533,10 +397,6 @@ export interface EventTypeFilter {
533
397
 
534
398
  eventTypeCategories?: (EventTypeCategory | string)[];
535
399
  }
536
- export declare namespace EventTypeFilter {
537
-
538
- const filterSensitiveLog: (obj: EventTypeFilter) => any;
539
- }
540
400
  export interface DescribeEventTypesRequest {
541
401
 
542
402
  filter?: EventTypeFilter;
@@ -547,10 +407,6 @@ export interface DescribeEventTypesRequest {
547
407
 
548
408
  maxResults?: number;
549
409
  }
550
- export declare namespace DescribeEventTypesRequest {
551
-
552
- const filterSensitiveLog: (obj: DescribeEventTypesRequest) => any;
553
- }
554
410
 
555
411
  export interface EventType {
556
412
 
@@ -560,28 +416,16 @@ export interface EventType {
560
416
 
561
417
  category?: EventTypeCategory | string;
562
418
  }
563
- export declare namespace EventType {
564
-
565
- const filterSensitiveLog: (obj: EventType) => any;
566
- }
567
419
  export interface DescribeEventTypesResponse {
568
420
 
569
421
  eventTypes?: EventType[];
570
422
 
571
423
  nextToken?: string;
572
424
  }
573
- export declare namespace DescribeEventTypesResponse {
574
-
575
- const filterSensitiveLog: (obj: DescribeEventTypesResponse) => any;
576
- }
577
425
  export interface DescribeHealthServiceStatusForOrganizationResponse {
578
426
 
579
427
  healthServiceAccessStatusForOrganization?: string;
580
428
  }
581
- export declare namespace DescribeHealthServiceStatusForOrganizationResponse {
582
-
583
- const filterSensitiveLog: (obj: DescribeHealthServiceStatusForOrganizationResponse) => any;
584
- }
585
429
 
586
430
  export declare class ConcurrentModificationException extends __BaseException {
587
431
  readonly name: "ConcurrentModificationException";
@@ -589,3 +433,81 @@ export declare class ConcurrentModificationException extends __BaseException {
589
433
 
590
434
  constructor(opts: __ExceptionOptionType<ConcurrentModificationException, __BaseException>);
591
435
  }
436
+
437
+ export declare const AffectedEntityFilterSensitiveLog: (obj: AffectedEntity) => any;
438
+
439
+ export declare const DescribeAffectedAccountsForOrganizationRequestFilterSensitiveLog: (obj: DescribeAffectedAccountsForOrganizationRequest) => any;
440
+
441
+ export declare const DescribeAffectedAccountsForOrganizationResponseFilterSensitiveLog: (obj: DescribeAffectedAccountsForOrganizationResponse) => any;
442
+
443
+ export declare const DateTimeRangeFilterSensitiveLog: (obj: DateTimeRange) => any;
444
+
445
+ export declare const EntityFilterFilterSensitiveLog: (obj: EntityFilter) => any;
446
+
447
+ export declare const DescribeAffectedEntitiesRequestFilterSensitiveLog: (obj: DescribeAffectedEntitiesRequest) => any;
448
+
449
+ export declare const DescribeAffectedEntitiesResponseFilterSensitiveLog: (obj: DescribeAffectedEntitiesResponse) => any;
450
+
451
+ export declare const EventAccountFilterFilterSensitiveLog: (obj: EventAccountFilter) => any;
452
+
453
+ export declare const DescribeAffectedEntitiesForOrganizationRequestFilterSensitiveLog: (obj: DescribeAffectedEntitiesForOrganizationRequest) => any;
454
+
455
+ export declare const OrganizationAffectedEntitiesErrorItemFilterSensitiveLog: (obj: OrganizationAffectedEntitiesErrorItem) => any;
456
+
457
+ export declare const DescribeAffectedEntitiesForOrganizationResponseFilterSensitiveLog: (obj: DescribeAffectedEntitiesForOrganizationResponse) => any;
458
+
459
+ export declare const DescribeEntityAggregatesRequestFilterSensitiveLog: (obj: DescribeEntityAggregatesRequest) => any;
460
+
461
+ export declare const EntityAggregateFilterSensitiveLog: (obj: EntityAggregate) => any;
462
+
463
+ export declare const DescribeEntityAggregatesResponseFilterSensitiveLog: (obj: DescribeEntityAggregatesResponse) => any;
464
+
465
+ export declare const EventFilterFilterSensitiveLog: (obj: EventFilter) => any;
466
+
467
+ export declare const DescribeEventAggregatesRequestFilterSensitiveLog: (obj: DescribeEventAggregatesRequest) => any;
468
+
469
+ export declare const EventAggregateFilterSensitiveLog: (obj: EventAggregate) => any;
470
+
471
+ export declare const DescribeEventAggregatesResponseFilterSensitiveLog: (obj: DescribeEventAggregatesResponse) => any;
472
+
473
+ export declare const DescribeEventDetailsRequestFilterSensitiveLog: (obj: DescribeEventDetailsRequest) => any;
474
+
475
+ export declare const EventDetailsErrorItemFilterSensitiveLog: (obj: EventDetailsErrorItem) => any;
476
+
477
+ export declare const EventFilterSensitiveLog: (obj: Event) => any;
478
+
479
+ export declare const EventDescriptionFilterSensitiveLog: (obj: EventDescription) => any;
480
+
481
+ export declare const EventDetailsFilterSensitiveLog: (obj: EventDetails) => any;
482
+
483
+ export declare const DescribeEventDetailsResponseFilterSensitiveLog: (obj: DescribeEventDetailsResponse) => any;
484
+
485
+ export declare const DescribeEventDetailsForOrganizationRequestFilterSensitiveLog: (obj: DescribeEventDetailsForOrganizationRequest) => any;
486
+
487
+ export declare const OrganizationEventDetailsErrorItemFilterSensitiveLog: (obj: OrganizationEventDetailsErrorItem) => any;
488
+
489
+ export declare const OrganizationEventDetailsFilterSensitiveLog: (obj: OrganizationEventDetails) => any;
490
+
491
+ export declare const DescribeEventDetailsForOrganizationResponseFilterSensitiveLog: (obj: DescribeEventDetailsForOrganizationResponse) => any;
492
+
493
+ export declare const DescribeEventsRequestFilterSensitiveLog: (obj: DescribeEventsRequest) => any;
494
+
495
+ export declare const DescribeEventsResponseFilterSensitiveLog: (obj: DescribeEventsResponse) => any;
496
+
497
+ export declare const OrganizationEventFilterFilterSensitiveLog: (obj: OrganizationEventFilter) => any;
498
+
499
+ export declare const DescribeEventsForOrganizationRequestFilterSensitiveLog: (obj: DescribeEventsForOrganizationRequest) => any;
500
+
501
+ export declare const OrganizationEventFilterSensitiveLog: (obj: OrganizationEvent) => any;
502
+
503
+ export declare const DescribeEventsForOrganizationResponseFilterSensitiveLog: (obj: DescribeEventsForOrganizationResponse) => any;
504
+
505
+ export declare const EventTypeFilterFilterSensitiveLog: (obj: EventTypeFilter) => any;
506
+
507
+ export declare const DescribeEventTypesRequestFilterSensitiveLog: (obj: DescribeEventTypesRequest) => any;
508
+
509
+ export declare const EventTypeFilterSensitiveLog: (obj: EventType) => any;
510
+
511
+ export declare const DescribeEventTypesResponseFilterSensitiveLog: (obj: DescribeEventTypesResponse) => any;
512
+
513
+ export declare const DescribeHealthServiceStatusForOrganizationResponseFilterSensitiveLog: (obj: DescribeHealthServiceStatusForOrganizationResponse) => any;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-health",
3
3
  "description": "AWS SDK for JavaScript Health Client for Node.js, Browser and React Native",
4
- "version": "3.132.0",
4
+ "version": "3.137.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,9 +18,9 @@
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.131.0",
21
+ "@aws-sdk/client-sts": "3.137.0",
22
22
  "@aws-sdk/config-resolver": "3.130.0",
23
- "@aws-sdk/credential-provider-node": "3.131.0",
23
+ "@aws-sdk/credential-provider-node": "3.137.0",
24
24
  "@aws-sdk/fetch-http-handler": "3.131.0",
25
25
  "@aws-sdk/hash-node": "3.127.0",
26
26
  "@aws-sdk/invalid-dependency": "3.127.0",
@@ -36,15 +36,15 @@
36
36
  "@aws-sdk/node-config-provider": "3.127.0",
37
37
  "@aws-sdk/node-http-handler": "3.127.0",
38
38
  "@aws-sdk/protocol-http": "3.127.0",
39
- "@aws-sdk/smithy-client": "3.127.0",
39
+ "@aws-sdk/smithy-client": "3.137.0",
40
40
  "@aws-sdk/types": "3.127.0",
41
41
  "@aws-sdk/url-parser": "3.127.0",
42
42
  "@aws-sdk/util-base64-browser": "3.109.0",
43
43
  "@aws-sdk/util-base64-node": "3.55.0",
44
44
  "@aws-sdk/util-body-length-browser": "3.55.0",
45
45
  "@aws-sdk/util-body-length-node": "3.55.0",
46
- "@aws-sdk/util-defaults-mode-browser": "3.127.0",
47
- "@aws-sdk/util-defaults-mode-node": "3.130.0",
46
+ "@aws-sdk/util-defaults-mode-browser": "3.137.0",
47
+ "@aws-sdk/util-defaults-mode-node": "3.137.0",
48
48
  "@aws-sdk/util-user-agent-browser": "3.127.0",
49
49
  "@aws-sdk/util-user-agent-node": "3.127.0",
50
50
  "@aws-sdk/util-utf8-browser": "3.109.0",