@aws-sdk/client-marketplace-catalog 3.378.0 → 3.382.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,7 @@
1
1
  import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types";
2
+ /**
3
+ * @public
4
+ */
2
5
  export interface ClientInputEndpointParameters {
3
6
  region?: string | Provider<string>;
4
7
  useDualstackEndpoint?: boolean | Provider<boolean>;
@@ -10,6 +10,7 @@
10
10
  */
11
11
  export * from "./MarketplaceCatalogClient";
12
12
  export * from "./MarketplaceCatalog";
13
+ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
13
14
  export * from "./commands";
14
15
  export * from "./pagination";
15
16
  export * from "./models";
@@ -19,11 +19,13 @@ export declare class AccessDeniedException extends __BaseException {
19
19
  */
20
20
  export interface CancelChangeSetRequest {
21
21
  /**
22
+ * @public
22
23
  * <p>Required. The catalog related to the request. Fixed value:
23
24
  * <code>AWSMarketplace</code>.</p>
24
25
  */
25
26
  Catalog: string | undefined;
26
27
  /**
28
+ * @public
27
29
  * <p>Required. The unique identifier of the <code>StartChangeSet</code> request that you
28
30
  * want to cancel.</p>
29
31
  */
@@ -34,10 +36,12 @@ export interface CancelChangeSetRequest {
34
36
  */
35
37
  export interface CancelChangeSetResponse {
36
38
  /**
39
+ * @public
37
40
  * <p>The unique identifier for the change set referenced in this request.</p>
38
41
  */
39
42
  ChangeSetId?: string;
40
43
  /**
44
+ * @public
41
45
  * <p>The ARN associated with the change set referenced in this request.</p>
42
46
  */
43
47
  ChangeSetArn?: string;
@@ -116,6 +120,7 @@ export declare class ValidationException extends __BaseException {
116
120
  */
117
121
  export interface DeleteResourcePolicyRequest {
118
122
  /**
123
+ * @public
119
124
  * <p>The Amazon Resource Name (ARN) of the Entity resource that is associated with the
120
125
  * resource policy.</p>
121
126
  */
@@ -131,12 +136,14 @@ export interface DeleteResourcePolicyResponse {
131
136
  */
132
137
  export interface DescribeChangeSetRequest {
133
138
  /**
139
+ * @public
134
140
  * <p>Required. The catalog related to the request. Fixed value:
135
141
  * <code>AWSMarketplace</code>
136
142
  * </p>
137
143
  */
138
144
  Catalog: string | undefined;
139
145
  /**
146
+ * @public
140
147
  * <p>Required. The unique identifier for the <code>StartChangeSet</code> request that you
141
148
  * want to describe the details for.</p>
142
149
  */
@@ -149,10 +156,12 @@ export interface DescribeChangeSetRequest {
149
156
  */
150
157
  export interface Entity {
151
158
  /**
159
+ * @public
152
160
  * <p>The type of entity.</p>
153
161
  */
154
162
  Type: string | undefined;
155
163
  /**
164
+ * @public
156
165
  * <p>The identifier for the entity.</p>
157
166
  */
158
167
  Identifier?: string;
@@ -163,10 +172,12 @@ export interface Entity {
163
172
  */
164
173
  export interface ErrorDetail {
165
174
  /**
175
+ * @public
166
176
  * <p>The error code that identifies the type of error.</p>
167
177
  */
168
178
  ErrorCode?: string;
169
179
  /**
180
+ * @public
170
181
  * <p>The message for the error.</p>
171
182
  */
172
183
  ErrorMessage?: string;
@@ -178,23 +189,28 @@ export interface ErrorDetail {
178
189
  */
179
190
  export interface ChangeSummary {
180
191
  /**
192
+ * @public
181
193
  * <p>The type of the change.</p>
182
194
  */
183
195
  ChangeType?: string;
184
196
  /**
197
+ * @public
185
198
  * <p>The entity to be changed.</p>
186
199
  */
187
200
  Entity?: Entity;
188
201
  /**
202
+ * @public
189
203
  * <p>This object contains details specific to the change type of the requested
190
204
  * change.</p>
191
205
  */
192
206
  Details?: string;
193
207
  /**
208
+ * @public
194
209
  * <p>An array of <code>ErrorDetail</code> objects associated with the change.</p>
195
210
  */
196
211
  ErrorDetailList?: ErrorDetail[];
197
212
  /**
213
+ * @public
198
214
  * <p>Optional name for the change.</p>
199
215
  */
200
216
  ChangeName?: string;
@@ -231,35 +247,42 @@ export type ChangeStatus = (typeof ChangeStatus)[keyof typeof ChangeStatus];
231
247
  */
232
248
  export interface DescribeChangeSetResponse {
233
249
  /**
250
+ * @public
234
251
  * <p>Required. The unique identifier for the change set referenced in this request.</p>
235
252
  */
236
253
  ChangeSetId?: string;
237
254
  /**
255
+ * @public
238
256
  * <p>The ARN associated with the unique identifier for the change set referenced in this
239
257
  * request.</p>
240
258
  */
241
259
  ChangeSetArn?: string;
242
260
  /**
261
+ * @public
243
262
  * <p>The optional name provided in the <code>StartChangeSet</code> request. If you do not
244
263
  * provide a name, one is set by default.</p>
245
264
  */
246
265
  ChangeSetName?: string;
247
266
  /**
267
+ * @public
248
268
  * <p>The date and time, in ISO 8601 format (2018-02-27T13:45:22Z), the request started.
249
269
  * </p>
250
270
  */
251
271
  StartTime?: string;
252
272
  /**
273
+ * @public
253
274
  * <p>The date and time, in ISO 8601 format (2018-02-27T13:45:22Z), the request transitioned
254
275
  * to a terminal state. The change cannot transition to a different state. Null if the
255
276
  * request is not in a terminal state. </p>
256
277
  */
257
278
  EndTime?: string;
258
279
  /**
280
+ * @public
259
281
  * <p>The status of the change request.</p>
260
282
  */
261
283
  Status?: ChangeStatus | string;
262
284
  /**
285
+ * @public
263
286
  * <p>Returned if the change set is in <code>FAILED</code> status. Can be either
264
287
  * <code>CLIENT_ERROR</code>, which means that there are issues with the request (see
265
288
  * the <code>ErrorDetailList</code>), or <code>SERVER_FAULT</code>, which means that there
@@ -267,11 +290,13 @@ export interface DescribeChangeSetResponse {
267
290
  */
268
291
  FailureCode?: FailureCode | string;
269
292
  /**
293
+ * @public
270
294
  * <p>Returned if there is a failure on the change set, but that failure is not related to
271
295
  * any of the changes in the request.</p>
272
296
  */
273
297
  FailureDescription?: string;
274
298
  /**
299
+ * @public
275
300
  * <p>An array of <code>ChangeSummary</code> objects.</p>
276
301
  */
277
302
  ChangeSet?: ChangeSummary[];
@@ -281,12 +306,14 @@ export interface DescribeChangeSetResponse {
281
306
  */
282
307
  export interface DescribeEntityRequest {
283
308
  /**
309
+ * @public
284
310
  * <p>Required. The catalog related to the request. Fixed value:
285
311
  * <code>AWSMarketplace</code>
286
312
  * </p>
287
313
  */
288
314
  Catalog: string | undefined;
289
315
  /**
316
+ * @public
290
317
  * <p>Required. The unique ID of the entity to describe.</p>
291
318
  */
292
319
  EntityId: string | undefined;
@@ -296,25 +323,30 @@ export interface DescribeEntityRequest {
296
323
  */
297
324
  export interface DescribeEntityResponse {
298
325
  /**
326
+ * @public
299
327
  * <p>The named type of the entity, in the format of <code>EntityType@Version</code>.</p>
300
328
  */
301
329
  EntityType?: string;
302
330
  /**
331
+ * @public
303
332
  * <p>The identifier of the entity, in the format of
304
333
  * <code>EntityId@RevisionId</code>.</p>
305
334
  */
306
335
  EntityIdentifier?: string;
307
336
  /**
337
+ * @public
308
338
  * <p>The ARN associated to the unique identifier for the entity referenced in this
309
339
  * request.</p>
310
340
  */
311
341
  EntityArn?: string;
312
342
  /**
343
+ * @public
313
344
  * <p>The last modified date of the entity, in ISO 8601 format
314
345
  * (2018-02-27T13:45:22Z).</p>
315
346
  */
316
347
  LastModifiedDate?: string;
317
348
  /**
349
+ * @public
318
350
  * <p>This stringified JSON object includes the details of the entity.</p>
319
351
  */
320
352
  Details?: string;
@@ -337,6 +369,7 @@ export declare class ResourceNotSupportedException extends __BaseException {
337
369
  */
338
370
  export interface GetResourcePolicyRequest {
339
371
  /**
372
+ * @public
340
373
  * <p>The Amazon Resource Name (ARN) of the Entity resource that is associated with the
341
374
  * resource policy.</p>
342
375
  */
@@ -347,6 +380,7 @@ export interface GetResourcePolicyRequest {
347
380
  */
348
381
  export interface GetResourcePolicyResponse {
349
382
  /**
383
+ * @public
350
384
  * <p>The policy document to set; formatted in JSON.</p>
351
385
  */
352
386
  Policy?: string;
@@ -358,12 +392,14 @@ export interface GetResourcePolicyResponse {
358
392
  */
359
393
  export interface Filter {
360
394
  /**
395
+ * @public
361
396
  * <p>For <code>ListEntities</code>, the supported value for this is an
362
397
  * <code>EntityId</code>.</p>
363
398
  * <p>For <code>ListChangeSets</code>, the supported values are as follows:</p>
364
399
  */
365
400
  Name?: string;
366
401
  /**
402
+ * @public
367
403
  * <p>
368
404
  * <code>ListEntities</code> - This is a list of unique <code>EntityId</code>s.</p>
369
405
  * <p>
@@ -429,6 +465,7 @@ export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
429
465
  */
430
466
  export interface Sort {
431
467
  /**
468
+ * @public
432
469
  * <p>For <code>ListEntities</code>, supported attributes include
433
470
  * <code>LastModifiedDate</code> (default), <code>Visibility</code>,
434
471
  * <code>EntityId</code>, and <code>Name</code>.</p>
@@ -437,6 +474,7 @@ export interface Sort {
437
474
  */
438
475
  SortBy?: string;
439
476
  /**
477
+ * @public
440
478
  * <p>The sorting order. Can be <code>ASCENDING</code> or <code>DESCENDING</code>. The
441
479
  * default value is <code>DESCENDING</code>.</p>
442
480
  */
@@ -447,26 +485,31 @@ export interface Sort {
447
485
  */
448
486
  export interface ListChangeSetsRequest {
449
487
  /**
488
+ * @public
450
489
  * <p>The catalog related to the request. Fixed value: <code>AWSMarketplace</code>
451
490
  * </p>
452
491
  */
453
492
  Catalog: string | undefined;
454
493
  /**
494
+ * @public
455
495
  * <p>An array of filter objects.</p>
456
496
  */
457
497
  FilterList?: Filter[];
458
498
  /**
499
+ * @public
459
500
  * <p>An object that contains two attributes, <code>SortBy</code> and
460
501
  * <code>SortOrder</code>.</p>
461
502
  */
462
503
  Sort?: Sort;
463
504
  /**
505
+ * @public
464
506
  * <p>The maximum number of results returned by a single call. This value must be provided
465
507
  * in the next call to retrieve the next set of results. By default, this value is
466
508
  * 20.</p>
467
509
  */
468
510
  MaxResults?: number;
469
511
  /**
512
+ * @public
470
513
  * <p>The token value retrieved from a previous call to access the next page of
471
514
  * results.</p>
472
515
  */
@@ -479,38 +522,46 @@ export interface ListChangeSetsRequest {
479
522
  */
480
523
  export interface ChangeSetSummaryListItem {
481
524
  /**
525
+ * @public
482
526
  * <p>The unique identifier for a change set.</p>
483
527
  */
484
528
  ChangeSetId?: string;
485
529
  /**
530
+ * @public
486
531
  * <p>The ARN associated with the unique identifier for the change set referenced in this
487
532
  * request.</p>
488
533
  */
489
534
  ChangeSetArn?: string;
490
535
  /**
536
+ * @public
491
537
  * <p>The non-unique name for the change set.</p>
492
538
  */
493
539
  ChangeSetName?: string;
494
540
  /**
541
+ * @public
495
542
  * <p>The time, in ISO 8601 format (2018-02-27T13:45:22Z), when the change set was
496
543
  * started.</p>
497
544
  */
498
545
  StartTime?: string;
499
546
  /**
547
+ * @public
500
548
  * <p>The time, in ISO 8601 format (2018-02-27T13:45:22Z), when the change set was
501
549
  * finished.</p>
502
550
  */
503
551
  EndTime?: string;
504
552
  /**
553
+ * @public
505
554
  * <p>The current status of the change set.</p>
506
555
  */
507
556
  Status?: ChangeStatus | string;
508
557
  /**
558
+ * @public
509
559
  * <p>This object is a list of entity IDs (string) that are a part of a change set. The
510
560
  * entity ID list is a maximum of 20 entities. It must contain at least one entity.</p>
511
561
  */
512
562
  EntityIdList?: string[];
513
563
  /**
564
+ * @public
514
565
  * <p>Returned if the change set is in <code>FAILED</code> status. Can be either
515
566
  * <code>CLIENT_ERROR</code>, which means that there are issues with the request (see
516
567
  * the <code>ErrorDetailList</code> of <code>DescribeChangeSet</code>), or
@@ -524,10 +575,12 @@ export interface ChangeSetSummaryListItem {
524
575
  */
525
576
  export interface ListChangeSetsResponse {
526
577
  /**
578
+ * @public
527
579
  * <p> Array of <code>ChangeSetSummaryListItem</code> objects.</p>
528
580
  */
529
581
  ChangeSetSummaryList?: ChangeSetSummaryListItem[];
530
582
  /**
583
+ * @public
531
584
  * <p>The value of the next token, if it exists. Null if there are no more results.</p>
532
585
  */
533
586
  NextToken?: string;
@@ -549,29 +602,35 @@ export type OwnershipType = (typeof OwnershipType)[keyof typeof OwnershipType];
549
602
  */
550
603
  export interface ListEntitiesRequest {
551
604
  /**
605
+ * @public
552
606
  * <p>The catalog related to the request. Fixed value: <code>AWSMarketplace</code>
553
607
  * </p>
554
608
  */
555
609
  Catalog: string | undefined;
556
610
  /**
611
+ * @public
557
612
  * <p>The type of entities to retrieve.</p>
558
613
  */
559
614
  EntityType: string | undefined;
560
615
  /**
616
+ * @public
561
617
  * <p>An array of filter objects. Each filter object contains two attributes,
562
618
  * <code>filterName</code> and <code>filterValues</code>.</p>
563
619
  */
564
620
  FilterList?: Filter[];
565
621
  /**
622
+ * @public
566
623
  * <p>An object that contains two attributes, <code>SortBy</code> and
567
624
  * <code>SortOrder</code>.</p>
568
625
  */
569
626
  Sort?: Sort;
570
627
  /**
628
+ * @public
571
629
  * <p>The value of the next token, if it exists. Null if there are no more results.</p>
572
630
  */
573
631
  NextToken?: string;
574
632
  /**
633
+ * @public
575
634
  * <p>Specifies the upper limit of the elements on a single page. If a value isn't provided,
576
635
  * the default value is 20.</p>
577
636
  */
@@ -586,27 +645,33 @@ export interface ListEntitiesRequest {
586
645
  */
587
646
  export interface EntitySummary {
588
647
  /**
648
+ * @public
589
649
  * <p>The name for the entity. This value is not unique. It is defined by the seller.</p>
590
650
  */
591
651
  Name?: string;
592
652
  /**
653
+ * @public
593
654
  * <p>The type of the entity.</p>
594
655
  */
595
656
  EntityType?: string;
596
657
  /**
658
+ * @public
597
659
  * <p>The unique identifier for the entity.</p>
598
660
  */
599
661
  EntityId?: string;
600
662
  /**
663
+ * @public
601
664
  * <p>The ARN associated with the unique identifier for the entity.</p>
602
665
  */
603
666
  EntityArn?: string;
604
667
  /**
668
+ * @public
605
669
  * <p>The last time the entity was published, using ISO 8601 format
606
670
  * (2018-02-27T13:45:22Z).</p>
607
671
  */
608
672
  LastModifiedDate?: string;
609
673
  /**
674
+ * @public
610
675
  * <p>The visibility status of the entity to buyers. This value can be <code>Public</code>
611
676
  * (everyone can view the entity), <code>Limited</code> (the entity is visible to limited
612
677
  * accounts only), or <code>Restricted</code> (the entity was published and then
@@ -619,10 +684,12 @@ export interface EntitySummary {
619
684
  */
620
685
  export interface ListEntitiesResponse {
621
686
  /**
687
+ * @public
622
688
  * <p> Array of <code>EntitySummary</code> object.</p>
623
689
  */
624
690
  EntitySummaryList?: EntitySummary[];
625
691
  /**
692
+ * @public
626
693
  * <p>The value of the next token if it exists. Null if there is no more result.</p>
627
694
  */
628
695
  NextToken?: string;
@@ -632,6 +699,7 @@ export interface ListEntitiesResponse {
632
699
  */
633
700
  export interface ListTagsForResourceRequest {
634
701
  /**
702
+ * @public
635
703
  * <p>Required. The Amazon Resource Name (ARN) associated with the resource you want to list
636
704
  * tags on.</p>
637
705
  */
@@ -643,10 +711,12 @@ export interface ListTagsForResourceRequest {
643
711
  */
644
712
  export interface Tag {
645
713
  /**
714
+ * @public
646
715
  * <p>The key associated with the tag.</p>
647
716
  */
648
717
  Key: string | undefined;
649
718
  /**
719
+ * @public
650
720
  * <p>The value associated with the tag.</p>
651
721
  */
652
722
  Value: string | undefined;
@@ -656,10 +726,12 @@ export interface Tag {
656
726
  */
657
727
  export interface ListTagsForResourceResponse {
658
728
  /**
729
+ * @public
659
730
  * <p>Required. The ARN associated with the resource you want to list tags on.</p>
660
731
  */
661
732
  ResourceArn?: string;
662
733
  /**
734
+ * @public
663
735
  * <p>Required. A list of objects specifying each key name and value. Number of objects
664
736
  * allowed: 1-50.</p>
665
737
  */
@@ -670,11 +742,13 @@ export interface ListTagsForResourceResponse {
670
742
  */
671
743
  export interface PutResourcePolicyRequest {
672
744
  /**
745
+ * @public
673
746
  * <p>The Amazon Resource Name (ARN) of the Entity resource you want to associate with a
674
747
  * resource policy. </p>
675
748
  */
676
749
  ResourceArn: string | undefined;
677
750
  /**
751
+ * @public
678
752
  * <p>The policy document to set; formatted in JSON.</p>
679
753
  */
680
754
  Policy: string | undefined;
@@ -704,6 +778,7 @@ export declare class ServiceQuotaExceededException extends __BaseException {
704
778
  */
705
779
  export interface Change {
706
780
  /**
781
+ * @public
707
782
  * <p>Change types are single string values that describe your intention for the change.
708
783
  * Each change type is unique for each <code>EntityType</code> provided in the change's
709
784
  * scope. For more information on change types available for single-AMI products, see
@@ -712,14 +787,17 @@ export interface Change {
712
787
  */
713
788
  ChangeType: string | undefined;
714
789
  /**
790
+ * @public
715
791
  * <p>The entity to be changed.</p>
716
792
  */
717
793
  Entity: Entity | undefined;
718
794
  /**
795
+ * @public
719
796
  * <p>The tags associated with the change.</p>
720
797
  */
721
798
  EntityTags?: Tag[];
722
799
  /**
800
+ * @public
723
801
  * <p>This object contains details specific to the change type of the requested
724
802
  * change. For more
725
803
  * information on change types available for single-AMI products, see <a href="https://docs.aws.amazon.com/marketplace-catalog/latest/api-reference/ami-products.html#working-with-single-AMI-products">Working with single-AMI products</a>. Also, for more information on change
@@ -727,6 +805,7 @@ export interface Change {
727
805
  */
728
806
  Details: string | undefined;
729
807
  /**
808
+ * @public
730
809
  * <p>Optional name for the change.</p>
731
810
  */
732
811
  ChangeName?: string;
@@ -736,24 +815,29 @@ export interface Change {
736
815
  */
737
816
  export interface StartChangeSetRequest {
738
817
  /**
818
+ * @public
739
819
  * <p>The catalog related to the request. Fixed value: <code>AWSMarketplace</code>
740
820
  * </p>
741
821
  */
742
822
  Catalog: string | undefined;
743
823
  /**
824
+ * @public
744
825
  * <p>Array of <code>change</code> object.</p>
745
826
  */
746
827
  ChangeSet: Change[] | undefined;
747
828
  /**
829
+ * @public
748
830
  * <p>Optional case sensitive string of up to 100 ASCII characters. The change set name can
749
831
  * be used to filter the list of change sets. </p>
750
832
  */
751
833
  ChangeSetName?: string;
752
834
  /**
835
+ * @public
753
836
  * <p>A unique token to identify the request to ensure idempotency.</p>
754
837
  */
755
838
  ClientRequestToken?: string;
756
839
  /**
840
+ * @public
757
841
  * <p>A list of objects specifying each key name and value for the
758
842
  * <code>ChangeSetTags</code> property.</p>
759
843
  */
@@ -764,10 +848,12 @@ export interface StartChangeSetRequest {
764
848
  */
765
849
  export interface StartChangeSetResponse {
766
850
  /**
851
+ * @public
767
852
  * <p>Unique identifier generated for the request.</p>
768
853
  */
769
854
  ChangeSetId?: string;
770
855
  /**
856
+ * @public
771
857
  * <p>The ARN associated to the unique identifier generated for the request.</p>
772
858
  */
773
859
  ChangeSetArn?: string;
@@ -777,11 +863,13 @@ export interface StartChangeSetResponse {
777
863
  */
778
864
  export interface TagResourceRequest {
779
865
  /**
866
+ * @public
780
867
  * <p>Required. The Amazon Resource Name (ARN) associated with the resource you want to
781
868
  * tag.</p>
782
869
  */
783
870
  ResourceArn: string | undefined;
784
871
  /**
872
+ * @public
785
873
  * <p>Required. A list of objects specifying each key name and value. Number of objects
786
874
  * allowed: 1-50.</p>
787
875
  */
@@ -797,11 +885,13 @@ export interface TagResourceResponse {
797
885
  */
798
886
  export interface UntagResourceRequest {
799
887
  /**
888
+ * @public
800
889
  * <p>Required. The Amazon Resource Name (ARN) associated with the resource you want to
801
890
  * remove the tag from.</p>
802
891
  */
803
892
  ResourceArn: string | undefined;
804
893
  /**
894
+ * @public
805
895
  * <p>Required. A list of key names of tags to be removed. Number of strings allowed:
806
896
  * 0-256.</p>
807
897
  */
@@ -1,5 +1,6 @@
1
1
  export * from "./MarketplaceCatalogClient";
2
2
  export * from "./MarketplaceCatalog";
3
+ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
3
4
  export * from "./commands";
4
5
  export * from "./pagination";
5
6
  export * from "./models";
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-marketplace-catalog",
3
3
  "description": "AWS SDK for JavaScript Marketplace Catalog Client for Node.js, Browser and React Native",
4
- "version": "3.378.0",
4
+ "version": "3.382.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",
@@ -21,15 +21,15 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.378.0",
25
- "@aws-sdk/credential-provider-node": "3.378.0",
26
- "@aws-sdk/middleware-host-header": "3.378.0",
24
+ "@aws-sdk/client-sts": "3.382.0",
25
+ "@aws-sdk/credential-provider-node": "3.382.0",
26
+ "@aws-sdk/middleware-host-header": "3.379.1",
27
27
  "@aws-sdk/middleware-logger": "3.378.0",
28
28
  "@aws-sdk/middleware-recursion-detection": "3.378.0",
29
- "@aws-sdk/middleware-signing": "3.378.0",
30
- "@aws-sdk/middleware-user-agent": "3.378.0",
29
+ "@aws-sdk/middleware-signing": "3.379.1",
30
+ "@aws-sdk/middleware-user-agent": "3.382.0",
31
31
  "@aws-sdk/types": "3.378.0",
32
- "@aws-sdk/util-endpoints": "3.378.0",
32
+ "@aws-sdk/util-endpoints": "3.382.0",
33
33
  "@aws-sdk/util-user-agent-browser": "3.378.0",
34
34
  "@aws-sdk/util-user-agent-node": "3.378.0",
35
35
  "@smithy/config-resolver": "^2.0.1",