@aws-sdk/client-rbin 3.296.0 → 3.298.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 (40) hide show
  1. package/dist-cjs/commands/CreateRuleCommand.js +2 -3
  2. package/dist-cjs/commands/DeleteRuleCommand.js +2 -3
  3. package/dist-cjs/commands/GetRuleCommand.js +2 -3
  4. package/dist-cjs/commands/ListRulesCommand.js +2 -3
  5. package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -3
  6. package/dist-cjs/commands/LockRuleCommand.js +2 -3
  7. package/dist-cjs/commands/TagResourceCommand.js +2 -3
  8. package/dist-cjs/commands/UnlockRuleCommand.js +2 -3
  9. package/dist-cjs/commands/UntagResourceCommand.js +2 -3
  10. package/dist-cjs/commands/UpdateRuleCommand.js +2 -3
  11. package/dist-cjs/models/models_0.js +1 -105
  12. package/dist-es/commands/CreateRuleCommand.js +2 -3
  13. package/dist-es/commands/DeleteRuleCommand.js +2 -3
  14. package/dist-es/commands/GetRuleCommand.js +2 -3
  15. package/dist-es/commands/ListRulesCommand.js +2 -3
  16. package/dist-es/commands/ListTagsForResourceCommand.js +2 -3
  17. package/dist-es/commands/LockRuleCommand.js +2 -3
  18. package/dist-es/commands/TagResourceCommand.js +2 -3
  19. package/dist-es/commands/UnlockRuleCommand.js +2 -3
  20. package/dist-es/commands/UntagResourceCommand.js +2 -3
  21. package/dist-es/commands/UpdateRuleCommand.js +2 -3
  22. package/dist-es/models/models_0.js +0 -78
  23. package/dist-types/Rbin.d.ts +11 -0
  24. package/dist-types/RbinClient.d.ts +24 -4
  25. package/dist-types/commands/CreateRuleCommand.d.ts +16 -0
  26. package/dist-types/commands/DeleteRuleCommand.d.ts +16 -0
  27. package/dist-types/commands/GetRuleCommand.d.ts +16 -0
  28. package/dist-types/commands/ListRulesCommand.d.ts +16 -0
  29. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  30. package/dist-types/commands/LockRuleCommand.d.ts +16 -0
  31. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  32. package/dist-types/commands/UnlockRuleCommand.d.ts +16 -0
  33. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  34. package/dist-types/commands/UpdateRuleCommand.d.ts +16 -0
  35. package/dist-types/models/RbinServiceException.d.ts +2 -0
  36. package/dist-types/models/models_0.d.ts +98 -104
  37. package/dist-types/pagination/Interfaces.d.ts +3 -0
  38. package/dist-types/pagination/ListRulesPaginator.d.ts +3 -0
  39. package/dist-types/ts3.4/models/models_0.d.ts +0 -70
  40. package/package.json +4 -3
@@ -1,5 +1,7 @@
1
1
  import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
2
  /**
3
+ * @public
4
+ *
3
5
  * Base exception class for all service exceptions from Rbin service.
4
6
  */
5
7
  export declare class RbinServiceException extends __ServiceException {
@@ -1,9 +1,13 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
2
  import { RbinServiceException as __BaseException } from "./RbinServiceException";
3
+ /**
4
+ * @public
5
+ */
3
6
  export declare enum UnlockDelayUnit {
4
7
  DAYS = "DAYS"
5
8
  }
6
9
  /**
10
+ * @public
7
11
  * <p>Information about the retention rule unlock delay. The unlock delay is the period after which
8
12
  * a retention rule can be modified or edited after it has been unlocked by a user with the required
9
13
  * permissions. The retention rule can't be modified or deleted during the unlock delay.</p>
@@ -21,6 +25,7 @@ export interface UnlockDelay {
21
25
  UnlockDelayUnit: UnlockDelayUnit | string | undefined;
22
26
  }
23
27
  /**
28
+ * @public
24
29
  * <p>Information about a retention rule lock configuration.</p>
25
30
  */
26
31
  export interface LockConfiguration {
@@ -30,6 +35,7 @@ export interface LockConfiguration {
30
35
  UnlockDelay: UnlockDelay | undefined;
31
36
  }
32
37
  /**
38
+ * @public
33
39
  * <p>Information about the resource tags used to identify resources that are retained by the retention
34
40
  * rule.</p>
35
41
  */
@@ -43,14 +49,21 @@ export interface ResourceTag {
43
49
  */
44
50
  ResourceTagValue?: string;
45
51
  }
52
+ /**
53
+ * @public
54
+ */
46
55
  export declare enum ResourceType {
47
56
  EBS_SNAPSHOT = "EBS_SNAPSHOT",
48
57
  EC2_IMAGE = "EC2_IMAGE"
49
58
  }
59
+ /**
60
+ * @public
61
+ */
50
62
  export declare enum RetentionPeriodUnit {
51
63
  DAYS = "DAYS"
52
64
  }
53
65
  /**
66
+ * @public
54
67
  * <p>Information about the retention period for which the retention rule is to retain resources.</p>
55
68
  */
56
69
  export interface RetentionPeriod {
@@ -66,6 +79,7 @@ export interface RetentionPeriod {
66
79
  RetentionPeriodUnit: RetentionPeriodUnit | string | undefined;
67
80
  }
68
81
  /**
82
+ * @public
69
83
  * <p>Information about the tags to assign to the retention rule.</p>
70
84
  */
71
85
  export interface Tag {
@@ -78,6 +92,9 @@ export interface Tag {
78
92
  */
79
93
  Value: string | undefined;
80
94
  }
95
+ /**
96
+ * @public
97
+ */
81
98
  export interface CreateRuleRequest {
82
99
  /**
83
100
  * <p>Information about the retention period for which the retention rule is to retain resources.</p>
@@ -113,15 +130,24 @@ export interface CreateRuleRequest {
113
130
  */
114
131
  LockConfiguration?: LockConfiguration;
115
132
  }
133
+ /**
134
+ * @public
135
+ */
116
136
  export declare enum LockState {
117
137
  LOCKED = "locked",
118
138
  PENDING_UNLOCK = "pending_unlock",
119
139
  UNLOCKED = "unlocked"
120
140
  }
141
+ /**
142
+ * @public
143
+ */
121
144
  export declare enum RuleStatus {
122
145
  AVAILABLE = "available",
123
146
  PENDING = "pending"
124
147
  }
148
+ /**
149
+ * @public
150
+ */
125
151
  export interface CreateRuleResponse {
126
152
  /**
127
153
  * <p>The unique ID of the retention rule.</p>
@@ -186,6 +212,7 @@ export interface CreateRuleResponse {
186
212
  LockState?: LockState | string;
187
213
  }
188
214
  /**
215
+ * @public
189
216
  * <p>The service could not respond to the request due to an internal problem.</p>
190
217
  */
191
218
  export declare class InternalServerException extends __BaseException {
@@ -197,10 +224,14 @@ export declare class InternalServerException extends __BaseException {
197
224
  */
198
225
  constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
199
226
  }
227
+ /**
228
+ * @public
229
+ */
200
230
  export declare enum ServiceQuotaExceededExceptionReason {
201
231
  SERVICE_QUOTA_EXCEEDED = "SERVICE_QUOTA_EXCEEDED"
202
232
  }
203
233
  /**
234
+ * @public
204
235
  * <p>The request would cause a service quota for the number of tags per resource to be exceeded.</p>
205
236
  */
206
237
  export declare class ServiceQuotaExceededException extends __BaseException {
@@ -216,11 +247,15 @@ export declare class ServiceQuotaExceededException extends __BaseException {
216
247
  */
217
248
  constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
218
249
  }
250
+ /**
251
+ * @public
252
+ */
219
253
  export declare enum ValidationExceptionReason {
220
254
  INVALID_PAGE_TOKEN = "INVALID_PAGE_TOKEN",
221
255
  INVALID_PARAMETER_VALUE = "INVALID_PARAMETER_VALUE"
222
256
  }
223
257
  /**
258
+ * @public
224
259
  * <p>One or more of the parameters in the request is not valid.</p>
225
260
  */
226
261
  export declare class ValidationException extends __BaseException {
@@ -236,10 +271,14 @@ export declare class ValidationException extends __BaseException {
236
271
  */
237
272
  constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
238
273
  }
274
+ /**
275
+ * @public
276
+ */
239
277
  export declare enum ConflictExceptionReason {
240
278
  INVALID_RULE_STATE = "INVALID_RULE_STATE"
241
279
  }
242
280
  /**
281
+ * @public
243
282
  * <p>The specified retention rule lock request can't be completed.</p>
244
283
  */
245
284
  export declare class ConflictException extends __BaseException {
@@ -255,18 +294,28 @@ export declare class ConflictException extends __BaseException {
255
294
  */
256
295
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
257
296
  }
297
+ /**
298
+ * @public
299
+ */
258
300
  export interface DeleteRuleRequest {
259
301
  /**
260
302
  * <p>The unique ID of the retention rule.</p>
261
303
  */
262
304
  Identifier: string | undefined;
263
305
  }
306
+ /**
307
+ * @public
308
+ */
264
309
  export interface DeleteRuleResponse {
265
310
  }
311
+ /**
312
+ * @public
313
+ */
266
314
  export declare enum ResourceNotFoundExceptionReason {
267
315
  RULE_NOT_FOUND = "RULE_NOT_FOUND"
268
316
  }
269
317
  /**
318
+ * @public
270
319
  * <p>The specified resource was not found.</p>
271
320
  */
272
321
  export declare class ResourceNotFoundException extends __BaseException {
@@ -282,12 +331,18 @@ export declare class ResourceNotFoundException extends __BaseException {
282
331
  */
283
332
  constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
284
333
  }
334
+ /**
335
+ * @public
336
+ */
285
337
  export interface GetRuleRequest {
286
338
  /**
287
339
  * <p>The unique ID of the retention rule.</p>
288
340
  */
289
341
  Identifier: string | undefined;
290
342
  }
343
+ /**
344
+ * @public
345
+ */
291
346
  export interface GetRuleResponse {
292
347
  /**
293
348
  * <p>The unique ID of the retention rule.</p>
@@ -353,6 +408,9 @@ export interface GetRuleResponse {
353
408
  */
354
409
  LockEndTime?: Date;
355
410
  }
411
+ /**
412
+ * @public
413
+ */
356
414
  export interface ListRulesRequest {
357
415
  /**
358
416
  * <p>The maximum number of results to return with a single call.
@@ -383,6 +441,7 @@ export interface ListRulesRequest {
383
441
  LockState?: LockState | string;
384
442
  }
385
443
  /**
444
+ * @public
386
445
  * <p>Information about a Recycle Bin retention rule.</p>
387
446
  */
388
447
  export interface RuleSummary {
@@ -426,6 +485,9 @@ export interface RuleSummary {
426
485
  */
427
486
  LockState?: LockState | string;
428
487
  }
488
+ /**
489
+ * @public
490
+ */
429
491
  export interface ListRulesResponse {
430
492
  /**
431
493
  * <p>Information about the retention rules.</p>
@@ -436,18 +498,27 @@ export interface ListRulesResponse {
436
498
  */
437
499
  NextToken?: string;
438
500
  }
501
+ /**
502
+ * @public
503
+ */
439
504
  export interface ListTagsForResourceRequest {
440
505
  /**
441
506
  * <p>The Amazon Resource Name (ARN) of the retention rule.</p>
442
507
  */
443
508
  ResourceArn: string | undefined;
444
509
  }
510
+ /**
511
+ * @public
512
+ */
445
513
  export interface ListTagsForResourceResponse {
446
514
  /**
447
515
  * <p>Information about the tags assigned to the retention rule.</p>
448
516
  */
449
517
  Tags?: Tag[];
450
518
  }
519
+ /**
520
+ * @public
521
+ */
451
522
  export interface LockRuleRequest {
452
523
  /**
453
524
  * <p>The unique ID of the retention rule.</p>
@@ -458,6 +529,9 @@ export interface LockRuleRequest {
458
529
  */
459
530
  LockConfiguration: LockConfiguration | undefined;
460
531
  }
532
+ /**
533
+ * @public
534
+ */
461
535
  export interface LockRuleResponse {
462
536
  /**
463
537
  * <p>The unique ID of the retention rule.</p>
@@ -517,6 +591,9 @@ export interface LockRuleResponse {
517
591
  */
518
592
  LockState?: LockState | string;
519
593
  }
594
+ /**
595
+ * @public
596
+ */
520
597
  export interface TagResourceRequest {
521
598
  /**
522
599
  * <p>The Amazon Resource Name (ARN) of the retention rule.</p>
@@ -527,14 +604,23 @@ export interface TagResourceRequest {
527
604
  */
528
605
  Tags: Tag[] | undefined;
529
606
  }
607
+ /**
608
+ * @public
609
+ */
530
610
  export interface TagResourceResponse {
531
611
  }
612
+ /**
613
+ * @public
614
+ */
532
615
  export interface UnlockRuleRequest {
533
616
  /**
534
617
  * <p>The unique ID of the retention rule.</p>
535
618
  */
536
619
  Identifier: string | undefined;
537
620
  }
621
+ /**
622
+ * @public
623
+ */
538
624
  export interface UnlockRuleResponse {
539
625
  /**
540
626
  * <p>The unique ID of the retention rule.</p>
@@ -600,6 +686,9 @@ export interface UnlockRuleResponse {
600
686
  */
601
687
  LockEndTime?: Date;
602
688
  }
689
+ /**
690
+ * @public
691
+ */
603
692
  export interface UntagResourceRequest {
604
693
  /**
605
694
  * <p>The Amazon Resource Name (ARN) of the retention rule.</p>
@@ -610,8 +699,14 @@ export interface UntagResourceRequest {
610
699
  */
611
700
  TagKeys: string[] | undefined;
612
701
  }
702
+ /**
703
+ * @public
704
+ */
613
705
  export interface UntagResourceResponse {
614
706
  }
707
+ /**
708
+ * @public
709
+ */
615
710
  export interface UpdateRuleRequest {
616
711
  /**
617
712
  * <p>The unique ID of the retention rule.</p>
@@ -644,6 +739,9 @@ export interface UpdateRuleRequest {
644
739
  */
645
740
  ResourceTags?: ResourceTag[];
646
741
  }
742
+ /**
743
+ * @public
744
+ */
647
745
  export interface UpdateRuleResponse {
648
746
  /**
649
747
  * <p>The unique ID of the retention rule.</p>
@@ -705,107 +803,3 @@ export interface UpdateRuleResponse {
705
803
  */
706
804
  LockEndTime?: Date;
707
805
  }
708
- /**
709
- * @internal
710
- */
711
- export declare const UnlockDelayFilterSensitiveLog: (obj: UnlockDelay) => any;
712
- /**
713
- * @internal
714
- */
715
- export declare const LockConfigurationFilterSensitiveLog: (obj: LockConfiguration) => any;
716
- /**
717
- * @internal
718
- */
719
- export declare const ResourceTagFilterSensitiveLog: (obj: ResourceTag) => any;
720
- /**
721
- * @internal
722
- */
723
- export declare const RetentionPeriodFilterSensitiveLog: (obj: RetentionPeriod) => any;
724
- /**
725
- * @internal
726
- */
727
- export declare const TagFilterSensitiveLog: (obj: Tag) => any;
728
- /**
729
- * @internal
730
- */
731
- export declare const CreateRuleRequestFilterSensitiveLog: (obj: CreateRuleRequest) => any;
732
- /**
733
- * @internal
734
- */
735
- export declare const CreateRuleResponseFilterSensitiveLog: (obj: CreateRuleResponse) => any;
736
- /**
737
- * @internal
738
- */
739
- export declare const DeleteRuleRequestFilterSensitiveLog: (obj: DeleteRuleRequest) => any;
740
- /**
741
- * @internal
742
- */
743
- export declare const DeleteRuleResponseFilterSensitiveLog: (obj: DeleteRuleResponse) => any;
744
- /**
745
- * @internal
746
- */
747
- export declare const GetRuleRequestFilterSensitiveLog: (obj: GetRuleRequest) => any;
748
- /**
749
- * @internal
750
- */
751
- export declare const GetRuleResponseFilterSensitiveLog: (obj: GetRuleResponse) => any;
752
- /**
753
- * @internal
754
- */
755
- export declare const ListRulesRequestFilterSensitiveLog: (obj: ListRulesRequest) => any;
756
- /**
757
- * @internal
758
- */
759
- export declare const RuleSummaryFilterSensitiveLog: (obj: RuleSummary) => any;
760
- /**
761
- * @internal
762
- */
763
- export declare const ListRulesResponseFilterSensitiveLog: (obj: ListRulesResponse) => any;
764
- /**
765
- * @internal
766
- */
767
- export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
768
- /**
769
- * @internal
770
- */
771
- export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
772
- /**
773
- * @internal
774
- */
775
- export declare const LockRuleRequestFilterSensitiveLog: (obj: LockRuleRequest) => any;
776
- /**
777
- * @internal
778
- */
779
- export declare const LockRuleResponseFilterSensitiveLog: (obj: LockRuleResponse) => any;
780
- /**
781
- * @internal
782
- */
783
- export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
784
- /**
785
- * @internal
786
- */
787
- export declare const TagResourceResponseFilterSensitiveLog: (obj: TagResourceResponse) => any;
788
- /**
789
- * @internal
790
- */
791
- export declare const UnlockRuleRequestFilterSensitiveLog: (obj: UnlockRuleRequest) => any;
792
- /**
793
- * @internal
794
- */
795
- export declare const UnlockRuleResponseFilterSensitiveLog: (obj: UnlockRuleResponse) => any;
796
- /**
797
- * @internal
798
- */
799
- export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
800
- /**
801
- * @internal
802
- */
803
- export declare const UntagResourceResponseFilterSensitiveLog: (obj: UntagResourceResponse) => any;
804
- /**
805
- * @internal
806
- */
807
- export declare const UpdateRuleRequestFilterSensitiveLog: (obj: UpdateRuleRequest) => any;
808
- /**
809
- * @internal
810
- */
811
- export declare const UpdateRuleResponseFilterSensitiveLog: (obj: UpdateRuleResponse) => any;
@@ -1,5 +1,8 @@
1
1
  import { PaginationConfiguration } from "@aws-sdk/types";
2
2
  import { RbinClient } from "../RbinClient";
3
+ /**
4
+ * @public
5
+ */
3
6
  export interface RbinPaginationConfiguration extends PaginationConfiguration {
4
7
  client: RbinClient;
5
8
  }
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListRulesCommandInput, ListRulesCommandOutput } from "../commands/ListRulesCommand";
3
3
  import { RbinPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListRules(config: RbinPaginationConfiguration, input: ListRulesCommandInput, ...additionalArguments: any): Paginator<ListRulesCommandOutput>;
@@ -208,73 +208,3 @@ export interface UpdateRuleResponse {
208
208
  LockState?: LockState | string;
209
209
  LockEndTime?: Date;
210
210
  }
211
- export declare const UnlockDelayFilterSensitiveLog: (obj: UnlockDelay) => any;
212
- export declare const LockConfigurationFilterSensitiveLog: (
213
- obj: LockConfiguration
214
- ) => any;
215
- export declare const ResourceTagFilterSensitiveLog: (obj: ResourceTag) => any;
216
- export declare const RetentionPeriodFilterSensitiveLog: (
217
- obj: RetentionPeriod
218
- ) => any;
219
- export declare const TagFilterSensitiveLog: (obj: Tag) => any;
220
- export declare const CreateRuleRequestFilterSensitiveLog: (
221
- obj: CreateRuleRequest
222
- ) => any;
223
- export declare const CreateRuleResponseFilterSensitiveLog: (
224
- obj: CreateRuleResponse
225
- ) => any;
226
- export declare const DeleteRuleRequestFilterSensitiveLog: (
227
- obj: DeleteRuleRequest
228
- ) => any;
229
- export declare const DeleteRuleResponseFilterSensitiveLog: (
230
- obj: DeleteRuleResponse
231
- ) => any;
232
- export declare const GetRuleRequestFilterSensitiveLog: (
233
- obj: GetRuleRequest
234
- ) => any;
235
- export declare const GetRuleResponseFilterSensitiveLog: (
236
- obj: GetRuleResponse
237
- ) => any;
238
- export declare const ListRulesRequestFilterSensitiveLog: (
239
- obj: ListRulesRequest
240
- ) => any;
241
- export declare const RuleSummaryFilterSensitiveLog: (obj: RuleSummary) => any;
242
- export declare const ListRulesResponseFilterSensitiveLog: (
243
- obj: ListRulesResponse
244
- ) => any;
245
- export declare const ListTagsForResourceRequestFilterSensitiveLog: (
246
- obj: ListTagsForResourceRequest
247
- ) => any;
248
- export declare const ListTagsForResourceResponseFilterSensitiveLog: (
249
- obj: ListTagsForResourceResponse
250
- ) => any;
251
- export declare const LockRuleRequestFilterSensitiveLog: (
252
- obj: LockRuleRequest
253
- ) => any;
254
- export declare const LockRuleResponseFilterSensitiveLog: (
255
- obj: LockRuleResponse
256
- ) => any;
257
- export declare const TagResourceRequestFilterSensitiveLog: (
258
- obj: TagResourceRequest
259
- ) => any;
260
- export declare const TagResourceResponseFilterSensitiveLog: (
261
- obj: TagResourceResponse
262
- ) => any;
263
- export declare const UnlockRuleRequestFilterSensitiveLog: (
264
- obj: UnlockRuleRequest
265
- ) => any;
266
- export declare const UnlockRuleResponseFilterSensitiveLog: (
267
- obj: UnlockRuleResponse
268
- ) => any;
269
- export declare const UntagResourceRequestFilterSensitiveLog: (
270
- obj: UntagResourceRequest
271
- ) => any;
272
- export declare const UntagResourceResponseFilterSensitiveLog: (
273
- obj: UntagResourceResponse
274
- ) => any;
275
- export declare const UpdateRuleRequestFilterSensitiveLog: (
276
- obj: UpdateRuleRequest
277
- ) => any;
278
- export declare const UpdateRuleResponseFilterSensitiveLog: (
279
- obj: UpdateRuleResponse
280
- ) => any;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-rbin",
3
3
  "description": "AWS SDK for JavaScript Rbin Client for Node.js, Browser and React Native",
4
- "version": "3.296.0",
4
+ "version": "3.298.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",
@@ -11,6 +11,7 @@
11
11
  "build:types": "tsc -p tsconfig.types.json",
12
12
  "build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
13
13
  "clean": "rimraf ./dist-* && rimraf *.tsbuildinfo",
14
+ "extract:docs": "api-extractor run --local",
14
15
  "generate:client": "node ../../scripts/generate-clients/single-service --solo rbin"
15
16
  },
16
17
  "main": "./dist-cjs/index.js",
@@ -20,9 +21,9 @@
20
21
  "dependencies": {
21
22
  "@aws-crypto/sha256-browser": "3.0.0",
22
23
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.296.0",
24
+ "@aws-sdk/client-sts": "3.298.0",
24
25
  "@aws-sdk/config-resolver": "3.296.0",
25
- "@aws-sdk/credential-provider-node": "3.296.0",
26
+ "@aws-sdk/credential-provider-node": "3.298.0",
26
27
  "@aws-sdk/fetch-http-handler": "3.296.0",
27
28
  "@aws-sdk/hash-node": "3.296.0",
28
29
  "@aws-sdk/invalid-dependency": "3.296.0",