@aws-sdk/client-cloudhsm 3.379.1 → 3.385.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.
@@ -7,10 +7,12 @@ import { CloudHSMServiceException as __BaseException } from "./CloudHSMServiceEx
7
7
  */
8
8
  export interface Tag {
9
9
  /**
10
+ * @public
10
11
  * <p>The key of the tag.</p>
11
12
  */
12
13
  Key: string | undefined;
13
14
  /**
15
+ * @public
14
16
  * <p>The value of the tag.</p>
15
17
  */
16
18
  Value: string | undefined;
@@ -20,10 +22,12 @@ export interface Tag {
20
22
  */
21
23
  export interface AddTagsToResourceRequest {
22
24
  /**
25
+ * @public
23
26
  * <p>The Amazon Resource Name (ARN) of the AWS CloudHSM resource to tag.</p>
24
27
  */
25
28
  ResourceArn: string | undefined;
26
29
  /**
30
+ * @public
27
31
  * <p>One or more tags.</p>
28
32
  */
29
33
  TagList: Tag[] | undefined;
@@ -33,6 +37,7 @@ export interface AddTagsToResourceRequest {
33
37
  */
34
38
  export interface AddTagsToResourceResponse {
35
39
  /**
40
+ * @public
36
41
  * <p>The status of the operation.</p>
37
42
  */
38
43
  Status: string | undefined;
@@ -45,6 +50,7 @@ export declare class CloudHsmInternalException extends __BaseException {
45
50
  readonly name: "CloudHsmInternalException";
46
51
  readonly $fault: "server";
47
52
  /**
53
+ * @public
48
54
  * <p>Indicates if the action can be retried.</p>
49
55
  */
50
56
  retryable?: boolean;
@@ -61,6 +67,7 @@ export declare class CloudHsmServiceException extends __BaseException {
61
67
  readonly name: "CloudHsmServiceException";
62
68
  readonly $fault: "client";
63
69
  /**
70
+ * @public
64
71
  * <p>Indicates if the action can be retried.</p>
65
72
  */
66
73
  retryable?: boolean;
@@ -77,6 +84,7 @@ export declare class InvalidRequestException extends __BaseException {
77
84
  readonly name: "InvalidRequestException";
78
85
  readonly $fault: "client";
79
86
  /**
87
+ * @public
80
88
  * <p>Indicates if the action can be retried.</p>
81
89
  */
82
90
  retryable?: boolean;
@@ -103,6 +111,7 @@ export type ClientVersion = (typeof ClientVersion)[keyof typeof ClientVersion];
103
111
  */
104
112
  export interface CreateHapgRequest {
105
113
  /**
114
+ * @public
106
115
  * <p>The label of the new high-availability partition group.</p>
107
116
  */
108
117
  Label: string | undefined;
@@ -113,6 +122,7 @@ export interface CreateHapgRequest {
113
122
  */
114
123
  export interface CreateHapgResponse {
115
124
  /**
125
+ * @public
116
126
  * <p>The ARN of the high-availability partition group.</p>
117
127
  */
118
128
  HapgArn?: string;
@@ -134,29 +144,35 @@ export type SubscriptionType = (typeof SubscriptionType)[keyof typeof Subscripti
134
144
  */
135
145
  export interface CreateHsmRequest {
136
146
  /**
147
+ * @public
137
148
  * <p>The identifier of the subnet in your VPC in which to place the HSM.</p>
138
149
  */
139
150
  SubnetId: string | undefined;
140
151
  /**
152
+ * @public
141
153
  * <p>The SSH public key to install on the HSM.</p>
142
154
  */
143
155
  SshKey: string | undefined;
144
156
  /**
157
+ * @public
145
158
  * <p>The IP address to assign to the HSM's ENI.</p>
146
159
  * <p>If an IP address is not specified, an IP address will be randomly chosen from the CIDR
147
160
  * range of the subnet.</p>
148
161
  */
149
162
  EniIp?: string;
150
163
  /**
164
+ * @public
151
165
  * <p>The ARN of an IAM role to enable the AWS CloudHSM service to allocate an ENI on your
152
166
  * behalf.</p>
153
167
  */
154
168
  IamRoleArn: string | undefined;
155
169
  /**
170
+ * @public
156
171
  * <p>The external ID from <code>IamRoleArn</code>, if present.</p>
157
172
  */
158
173
  ExternalId?: string;
159
174
  /**
175
+ * @public
160
176
  * <p>Specifies the type of subscription for the HSM.</p>
161
177
  * <ul>
162
178
  * <li>
@@ -173,11 +189,13 @@ export interface CreateHsmRequest {
173
189
  */
174
190
  SubscriptionType: SubscriptionType | string | undefined;
175
191
  /**
192
+ * @public
176
193
  * <p>A user-defined token to ensure idempotence. Subsequent calls to this operation with the
177
194
  * same token will be ignored.</p>
178
195
  */
179
196
  ClientToken?: string;
180
197
  /**
198
+ * @public
181
199
  * <p>The IP address for the syslog monitoring server. The AWS CloudHSM service only supports one
182
200
  * syslog monitoring server.</p>
183
201
  */
@@ -189,6 +207,7 @@ export interface CreateHsmRequest {
189
207
  */
190
208
  export interface CreateHsmResponse {
191
209
  /**
210
+ * @public
192
211
  * <p>The ARN of the HSM.</p>
193
212
  */
194
213
  HsmArn?: string;
@@ -199,10 +218,12 @@ export interface CreateHsmResponse {
199
218
  */
200
219
  export interface CreateLunaClientRequest {
201
220
  /**
221
+ * @public
202
222
  * <p>The label for the client.</p>
203
223
  */
204
224
  Label?: string;
205
225
  /**
226
+ * @public
206
227
  * <p>The contents of a Base64-Encoded X.509 v3 certificate to be installed on the HSMs used
207
228
  * by this client.</p>
208
229
  */
@@ -214,6 +235,7 @@ export interface CreateLunaClientRequest {
214
235
  */
215
236
  export interface CreateLunaClientResponse {
216
237
  /**
238
+ * @public
217
239
  * <p>The ARN of the client.</p>
218
240
  */
219
241
  ClientArn?: string;
@@ -224,6 +246,7 @@ export interface CreateLunaClientResponse {
224
246
  */
225
247
  export interface DeleteHapgRequest {
226
248
  /**
249
+ * @public
227
250
  * <p>The ARN of the high-availability partition group to delete.</p>
228
251
  */
229
252
  HapgArn: string | undefined;
@@ -234,6 +257,7 @@ export interface DeleteHapgRequest {
234
257
  */
235
258
  export interface DeleteHapgResponse {
236
259
  /**
260
+ * @public
237
261
  * <p>The status of the action.</p>
238
262
  */
239
263
  Status: string | undefined;
@@ -244,6 +268,7 @@ export interface DeleteHapgResponse {
244
268
  */
245
269
  export interface DeleteHsmRequest {
246
270
  /**
271
+ * @public
247
272
  * <p>The ARN of the HSM to delete.</p>
248
273
  */
249
274
  HsmArn: string | undefined;
@@ -254,6 +279,7 @@ export interface DeleteHsmRequest {
254
279
  */
255
280
  export interface DeleteHsmResponse {
256
281
  /**
282
+ * @public
257
283
  * <p>The status of the operation.</p>
258
284
  */
259
285
  Status: string | undefined;
@@ -263,6 +289,7 @@ export interface DeleteHsmResponse {
263
289
  */
264
290
  export interface DeleteLunaClientRequest {
265
291
  /**
292
+ * @public
266
293
  * <p>The ARN of the client to delete.</p>
267
294
  */
268
295
  ClientArn: string | undefined;
@@ -272,6 +299,7 @@ export interface DeleteLunaClientRequest {
272
299
  */
273
300
  export interface DeleteLunaClientResponse {
274
301
  /**
302
+ * @public
275
303
  * <p>The status of the action.</p>
276
304
  */
277
305
  Status: string | undefined;
@@ -282,6 +310,7 @@ export interface DeleteLunaClientResponse {
282
310
  */
283
311
  export interface DescribeHapgRequest {
284
312
  /**
313
+ * @public
285
314
  * <p>The ARN of the high-availability partition group to describe.</p>
286
315
  */
287
316
  HapgArn: string | undefined;
@@ -305,39 +334,48 @@ export type CloudHsmObjectState = (typeof CloudHsmObjectState)[keyof typeof Clou
305
334
  */
306
335
  export interface DescribeHapgResponse {
307
336
  /**
337
+ * @public
308
338
  * <p>The ARN of the high-availability partition group.</p>
309
339
  */
310
340
  HapgArn?: string;
311
341
  /**
342
+ * @public
312
343
  * <p>The serial number of the high-availability partition group.</p>
313
344
  */
314
345
  HapgSerial?: string;
315
346
  /**
347
+ * @public
316
348
  * <p></p>
317
349
  */
318
350
  HsmsLastActionFailed?: string[];
319
351
  /**
352
+ * @public
320
353
  * <p></p>
321
354
  */
322
355
  HsmsPendingDeletion?: string[];
323
356
  /**
357
+ * @public
324
358
  * <p></p>
325
359
  */
326
360
  HsmsPendingRegistration?: string[];
327
361
  /**
362
+ * @public
328
363
  * <p>The label for the high-availability partition group.</p>
329
364
  */
330
365
  Label?: string;
331
366
  /**
367
+ * @public
332
368
  * <p>The date and time the high-availability partition group was last modified.</p>
333
369
  */
334
370
  LastModifiedTimestamp?: string;
335
371
  /**
372
+ * @public
336
373
  * <p>The list of partition serial numbers that belong to the high-availability partition
337
374
  * group.</p>
338
375
  */
339
376
  PartitionSerialList?: string[];
340
377
  /**
378
+ * @public
341
379
  * <p>The state of the high-availability partition group.</p>
342
380
  */
343
381
  State?: CloudHsmObjectState | string;
@@ -348,11 +386,13 @@ export interface DescribeHapgResponse {
348
386
  */
349
387
  export interface DescribeHsmRequest {
350
388
  /**
389
+ * @public
351
390
  * <p>The ARN of the HSM. Either the <code>HsmArn</code> or the <code>SerialNumber</code>
352
391
  * parameter must be specified.</p>
353
392
  */
354
393
  HsmArn?: string;
355
394
  /**
395
+ * @public
356
396
  * <p>The serial number of the HSM. Either the <code>HsmArn</code> or the
357
397
  * <code>HsmSerialNumber</code> parameter must be specified.</p>
358
398
  */
@@ -381,30 +421,37 @@ export type HsmStatus = (typeof HsmStatus)[keyof typeof HsmStatus];
381
421
  */
382
422
  export interface DescribeHsmResponse {
383
423
  /**
424
+ * @public
384
425
  * <p>The ARN of the HSM.</p>
385
426
  */
386
427
  HsmArn?: string;
387
428
  /**
429
+ * @public
388
430
  * <p>The status of the HSM.</p>
389
431
  */
390
432
  Status?: HsmStatus | string;
391
433
  /**
434
+ * @public
392
435
  * <p>Contains additional information about the status of the HSM.</p>
393
436
  */
394
437
  StatusDetails?: string;
395
438
  /**
439
+ * @public
396
440
  * <p>The Availability Zone that the HSM is in.</p>
397
441
  */
398
442
  AvailabilityZone?: string;
399
443
  /**
444
+ * @public
400
445
  * <p>The identifier of the elastic network interface (ENI) attached to the HSM.</p>
401
446
  */
402
447
  EniId?: string;
403
448
  /**
449
+ * @public
404
450
  * <p>The IP address assigned to the HSM's ENI.</p>
405
451
  */
406
452
  EniIp?: string;
407
453
  /**
454
+ * @public
408
455
  * <p>Specifies the type of subscription for the HSM.</p>
409
456
  * <ul>
410
457
  * <li>
@@ -421,58 +468,72 @@ export interface DescribeHsmResponse {
421
468
  */
422
469
  SubscriptionType?: SubscriptionType | string;
423
470
  /**
471
+ * @public
424
472
  * <p>The subscription start date.</p>
425
473
  */
426
474
  SubscriptionStartDate?: string;
427
475
  /**
476
+ * @public
428
477
  * <p>The subscription end date.</p>
429
478
  */
430
479
  SubscriptionEndDate?: string;
431
480
  /**
481
+ * @public
432
482
  * <p>The identifier of the VPC that the HSM is in.</p>
433
483
  */
434
484
  VpcId?: string;
435
485
  /**
486
+ * @public
436
487
  * <p>The identifier of the subnet that the HSM is in.</p>
437
488
  */
438
489
  SubnetId?: string;
439
490
  /**
491
+ * @public
440
492
  * <p>The ARN of the IAM role assigned to the HSM.</p>
441
493
  */
442
494
  IamRoleArn?: string;
443
495
  /**
496
+ * @public
444
497
  * <p>The serial number of the HSM.</p>
445
498
  */
446
499
  SerialNumber?: string;
447
500
  /**
501
+ * @public
448
502
  * <p>The name of the HSM vendor.</p>
449
503
  */
450
504
  VendorName?: string;
451
505
  /**
506
+ * @public
452
507
  * <p>The HSM model type.</p>
453
508
  */
454
509
  HsmType?: string;
455
510
  /**
511
+ * @public
456
512
  * <p>The HSM software version.</p>
457
513
  */
458
514
  SoftwareVersion?: string;
459
515
  /**
516
+ * @public
460
517
  * <p>The public SSH key.</p>
461
518
  */
462
519
  SshPublicKey?: string;
463
520
  /**
521
+ * @public
464
522
  * <p>The date and time that the SSH key was last updated.</p>
465
523
  */
466
524
  SshKeyLastUpdated?: string;
467
525
  /**
526
+ * @public
468
527
  * <p>The URI of the certificate server.</p>
469
528
  */
470
529
  ServerCertUri?: string;
471
530
  /**
531
+ * @public
472
532
  * <p>The date and time that the server certificate was last updated.</p>
473
533
  */
474
534
  ServerCertLastUpdated?: string;
475
535
  /**
536
+ * @public
476
537
  * <p>The list of partitions on the HSM.</p>
477
538
  */
478
539
  Partitions?: string[];
@@ -482,10 +543,12 @@ export interface DescribeHsmResponse {
482
543
  */
483
544
  export interface DescribeLunaClientRequest {
484
545
  /**
546
+ * @public
485
547
  * <p>The ARN of the client.</p>
486
548
  */
487
549
  ClientArn?: string;
488
550
  /**
551
+ * @public
489
552
  * <p>The certificate fingerprint.</p>
490
553
  */
491
554
  CertificateFingerprint?: string;
@@ -495,22 +558,27 @@ export interface DescribeLunaClientRequest {
495
558
  */
496
559
  export interface DescribeLunaClientResponse {
497
560
  /**
561
+ * @public
498
562
  * <p>The ARN of the client.</p>
499
563
  */
500
564
  ClientArn?: string;
501
565
  /**
566
+ * @public
502
567
  * <p>The certificate installed on the HSMs used by this client.</p>
503
568
  */
504
569
  Certificate?: string;
505
570
  /**
571
+ * @public
506
572
  * <p>The certificate fingerprint.</p>
507
573
  */
508
574
  CertificateFingerprint?: string;
509
575
  /**
576
+ * @public
510
577
  * <p>The date and time the client was last modified.</p>
511
578
  */
512
579
  LastModifiedTimestamp?: string;
513
580
  /**
581
+ * @public
514
582
  * <p>The label of the client.</p>
515
583
  */
516
584
  Label?: string;
@@ -520,14 +588,17 @@ export interface DescribeLunaClientResponse {
520
588
  */
521
589
  export interface GetConfigRequest {
522
590
  /**
591
+ * @public
523
592
  * <p>The ARN of the client.</p>
524
593
  */
525
594
  ClientArn: string | undefined;
526
595
  /**
596
+ * @public
527
597
  * <p>The client version.</p>
528
598
  */
529
599
  ClientVersion: ClientVersion | string | undefined;
530
600
  /**
601
+ * @public
531
602
  * <p>A list of ARNs that identify the high-availability partition groups that are associated
532
603
  * with the client.</p>
533
604
  */
@@ -538,14 +609,17 @@ export interface GetConfigRequest {
538
609
  */
539
610
  export interface GetConfigResponse {
540
611
  /**
612
+ * @public
541
613
  * <p>The type of credentials.</p>
542
614
  */
543
615
  ConfigType?: string;
544
616
  /**
617
+ * @public
545
618
  * <p>The chrystoki.conf configuration file.</p>
546
619
  */
547
620
  ConfigFile?: string;
548
621
  /**
622
+ * @public
549
623
  * <p>The certificate file containing the server.pem files of the HSMs.</p>
550
624
  */
551
625
  ConfigCred?: string;
@@ -561,6 +635,7 @@ export interface ListAvailableZonesRequest {
561
635
  */
562
636
  export interface ListAvailableZonesResponse {
563
637
  /**
638
+ * @public
564
639
  * <p>The list of Availability Zones that have available AWS CloudHSM capacity.</p>
565
640
  */
566
641
  AZList?: string[];
@@ -570,6 +645,7 @@ export interface ListAvailableZonesResponse {
570
645
  */
571
646
  export interface ListHapgsRequest {
572
647
  /**
648
+ * @public
573
649
  * <p>The <code>NextToken</code> value from a previous call to <code>ListHapgs</code>. Pass
574
650
  * null if this is the first call.</p>
575
651
  */
@@ -580,10 +656,12 @@ export interface ListHapgsRequest {
580
656
  */
581
657
  export interface ListHapgsResponse {
582
658
  /**
659
+ * @public
583
660
  * <p>The list of high-availability partition groups.</p>
584
661
  */
585
662
  HapgList: string[] | undefined;
586
663
  /**
664
+ * @public
587
665
  * <p>If not null, more results are available. Pass this value to <code>ListHapgs</code> to
588
666
  * retrieve the next set of items.</p>
589
667
  */
@@ -594,6 +672,7 @@ export interface ListHapgsResponse {
594
672
  */
595
673
  export interface ListHsmsRequest {
596
674
  /**
675
+ * @public
597
676
  * <p>The <code>NextToken</code> value from a previous call to <code>ListHsms</code>. Pass
598
677
  * null if this is the first call.</p>
599
678
  */
@@ -605,10 +684,12 @@ export interface ListHsmsRequest {
605
684
  */
606
685
  export interface ListHsmsResponse {
607
686
  /**
687
+ * @public
608
688
  * <p>The list of ARNs that identify the HSMs.</p>
609
689
  */
610
690
  HsmList?: string[];
611
691
  /**
692
+ * @public
612
693
  * <p>If not null, more results are available. Pass this value to <code>ListHsms</code> to
613
694
  * retrieve the next set of items.</p>
614
695
  */
@@ -619,6 +700,7 @@ export interface ListHsmsResponse {
619
700
  */
620
701
  export interface ListLunaClientsRequest {
621
702
  /**
703
+ * @public
622
704
  * <p>The <code>NextToken</code> value from a previous call to <code>ListLunaClients</code>.
623
705
  * Pass null if this is the first call.</p>
624
706
  */
@@ -629,10 +711,12 @@ export interface ListLunaClientsRequest {
629
711
  */
630
712
  export interface ListLunaClientsResponse {
631
713
  /**
714
+ * @public
632
715
  * <p>The list of clients.</p>
633
716
  */
634
717
  ClientList: string[] | undefined;
635
718
  /**
719
+ * @public
636
720
  * <p>If not null, more results are available. Pass this to <code>ListLunaClients</code> to
637
721
  * retrieve the next set of items.</p>
638
722
  */
@@ -643,6 +727,7 @@ export interface ListLunaClientsResponse {
643
727
  */
644
728
  export interface ListTagsForResourceRequest {
645
729
  /**
730
+ * @public
646
731
  * <p>The Amazon Resource Name (ARN) of the AWS CloudHSM resource.</p>
647
732
  */
648
733
  ResourceArn: string | undefined;
@@ -652,6 +737,7 @@ export interface ListTagsForResourceRequest {
652
737
  */
653
738
  export interface ListTagsForResourceResponse {
654
739
  /**
740
+ * @public
655
741
  * <p>One or more tags.</p>
656
742
  */
657
743
  TagList: Tag[] | undefined;
@@ -661,14 +747,17 @@ export interface ListTagsForResourceResponse {
661
747
  */
662
748
  export interface ModifyHapgRequest {
663
749
  /**
750
+ * @public
664
751
  * <p>The ARN of the high-availability partition group to modify.</p>
665
752
  */
666
753
  HapgArn: string | undefined;
667
754
  /**
755
+ * @public
668
756
  * <p>The new label for the high-availability partition group.</p>
669
757
  */
670
758
  Label?: string;
671
759
  /**
760
+ * @public
672
761
  * <p>The list of partition serial numbers to make members of the high-availability partition
673
762
  * group.</p>
674
763
  */
@@ -679,6 +768,7 @@ export interface ModifyHapgRequest {
679
768
  */
680
769
  export interface ModifyHapgResponse {
681
770
  /**
771
+ * @public
682
772
  * <p>The ARN of the high-availability partition group.</p>
683
773
  */
684
774
  HapgArn?: string;
@@ -689,15 +779,18 @@ export interface ModifyHapgResponse {
689
779
  */
690
780
  export interface ModifyHsmRequest {
691
781
  /**
782
+ * @public
692
783
  * <p>The ARN of the HSM to modify.</p>
693
784
  */
694
785
  HsmArn: string | undefined;
695
786
  /**
787
+ * @public
696
788
  * <p>The new identifier of the subnet that the HSM is in. The new subnet must be in the same
697
789
  * Availability Zone as the current subnet.</p>
698
790
  */
699
791
  SubnetId?: string;
700
792
  /**
793
+ * @public
701
794
  * <p>The new IP address for the elastic network interface (ENI) attached to the
702
795
  * HSM.</p>
703
796
  * <p>If the HSM is moved to a different subnet, and an IP address is not specified, an IP
@@ -705,14 +798,17 @@ export interface ModifyHsmRequest {
705
798
  */
706
799
  EniIp?: string;
707
800
  /**
801
+ * @public
708
802
  * <p>The new IAM role ARN.</p>
709
803
  */
710
804
  IamRoleArn?: string;
711
805
  /**
806
+ * @public
712
807
  * <p>The new external ID.</p>
713
808
  */
714
809
  ExternalId?: string;
715
810
  /**
811
+ * @public
716
812
  * <p>The new IP address for the syslog monitoring server. The AWS CloudHSM service only supports
717
813
  * one syslog monitoring server.</p>
718
814
  */
@@ -724,6 +820,7 @@ export interface ModifyHsmRequest {
724
820
  */
725
821
  export interface ModifyHsmResponse {
726
822
  /**
823
+ * @public
727
824
  * <p>The ARN of the HSM.</p>
728
825
  */
729
826
  HsmArn?: string;
@@ -733,10 +830,12 @@ export interface ModifyHsmResponse {
733
830
  */
734
831
  export interface ModifyLunaClientRequest {
735
832
  /**
833
+ * @public
736
834
  * <p>The ARN of the client.</p>
737
835
  */
738
836
  ClientArn: string | undefined;
739
837
  /**
838
+ * @public
740
839
  * <p>The new certificate for the client.</p>
741
840
  */
742
841
  Certificate: string | undefined;
@@ -746,6 +845,7 @@ export interface ModifyLunaClientRequest {
746
845
  */
747
846
  export interface ModifyLunaClientResponse {
748
847
  /**
848
+ * @public
749
849
  * <p>The ARN of the client.</p>
750
850
  */
751
851
  ClientArn?: string;
@@ -755,10 +855,12 @@ export interface ModifyLunaClientResponse {
755
855
  */
756
856
  export interface RemoveTagsFromResourceRequest {
757
857
  /**
858
+ * @public
758
859
  * <p>The Amazon Resource Name (ARN) of the AWS CloudHSM resource.</p>
759
860
  */
760
861
  ResourceArn: string | undefined;
761
862
  /**
863
+ * @public
762
864
  * <p>The tag key or keys to remove.</p>
763
865
  * <p>Specify only the tag key to remove (not the value). To overwrite the value for an
764
866
  * existing tag, use <a>AddTagsToResource</a>.</p>
@@ -770,6 +872,7 @@ export interface RemoveTagsFromResourceRequest {
770
872
  */
771
873
  export interface RemoveTagsFromResourceResponse {
772
874
  /**
875
+ * @public
773
876
  * <p>The status of the operation.</p>
774
877
  */
775
878
  Status: string | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-cloudhsm",
3
3
  "description": "AWS SDK for JavaScript Cloudhsm Client for Node.js, Browser and React Native",
4
- "version": "3.379.1",
4
+ "version": "3.385.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.379.1",
25
- "@aws-sdk/credential-provider-node": "3.379.1",
24
+ "@aws-sdk/client-sts": "3.385.0",
25
+ "@aws-sdk/credential-provider-node": "3.385.0",
26
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
29
  "@aws-sdk/middleware-signing": "3.379.1",
30
- "@aws-sdk/middleware-user-agent": "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",