@aws-sdk/client-lakeformation 3.679.0 → 3.686.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 (55) hide show
  1. package/README.md +41 -1
  2. package/dist-cjs/index.js +240 -0
  3. package/dist-es/LakeFormation.js +10 -0
  4. package/dist-es/commands/CreateLFTagExpressionCommand.js +22 -0
  5. package/dist-es/commands/DeleteLFTagExpressionCommand.js +22 -0
  6. package/dist-es/commands/GetLFTagExpressionCommand.js +22 -0
  7. package/dist-es/commands/ListLFTagExpressionsCommand.js +22 -0
  8. package/dist-es/commands/UpdateLFTagExpressionCommand.js +22 -0
  9. package/dist-es/commands/index.js +5 -0
  10. package/dist-es/models/models_0.js +2 -0
  11. package/dist-es/pagination/ListLFTagExpressionsPaginator.js +4 -0
  12. package/dist-es/pagination/index.js +1 -0
  13. package/dist-es/protocols/Aws_restJson1.js +137 -0
  14. package/dist-types/LakeFormation.d.ts +36 -0
  15. package/dist-types/LakeFormationClient.d.ts +7 -2
  16. package/dist-types/commands/AddLFTagsToResourceCommand.d.ts +6 -1
  17. package/dist-types/commands/BatchGrantPermissionsCommand.d.ts +16 -6
  18. package/dist-types/commands/BatchRevokePermissionsCommand.d.ts +16 -6
  19. package/dist-types/commands/CreateLFTagExpressionCommand.d.ts +105 -0
  20. package/dist-types/commands/CreateLakeFormationOptInCommand.d.ts +6 -1
  21. package/dist-types/commands/DeleteLFTagExpressionCommand.d.ts +86 -0
  22. package/dist-types/commands/DeleteLakeFormationOptInCommand.d.ts +6 -1
  23. package/dist-types/commands/GetDataLakeSettingsCommand.d.ts +2 -2
  24. package/dist-types/commands/GetEffectivePermissionsForPathCommand.d.ts +8 -3
  25. package/dist-types/commands/GetLFTagExpressionCommand.d.ts +98 -0
  26. package/dist-types/commands/GetResourceLFTagsCommand.d.ts +6 -1
  27. package/dist-types/commands/GetTemporaryGluePartitionCredentialsCommand.d.ts +1 -1
  28. package/dist-types/commands/GetTemporaryGlueTableCredentialsCommand.d.ts +2 -1
  29. package/dist-types/commands/GrantPermissionsCommand.d.ts +8 -3
  30. package/dist-types/commands/ListLFTagExpressionsCommand.d.ts +103 -0
  31. package/dist-types/commands/ListLakeFormationOptInsCommand.d.ts +12 -2
  32. package/dist-types/commands/ListPermissionsCommand.d.ts +15 -5
  33. package/dist-types/commands/PutDataLakeSettingsCommand.d.ts +2 -2
  34. package/dist-types/commands/RegisterResourceCommand.d.ts +1 -1
  35. package/dist-types/commands/RemoveLFTagsFromResourceCommand.d.ts +6 -1
  36. package/dist-types/commands/RevokePermissionsCommand.d.ts +8 -3
  37. package/dist-types/commands/UpdateLFTagExpressionCommand.d.ts +98 -0
  38. package/dist-types/commands/index.d.ts +5 -0
  39. package/dist-types/models/models_0.d.ts +216 -5
  40. package/dist-types/pagination/ListLFTagExpressionsPaginator.d.ts +7 -0
  41. package/dist-types/pagination/index.d.ts +1 -0
  42. package/dist-types/protocols/Aws_restJson1.d.ts +45 -0
  43. package/dist-types/ts3.4/LakeFormation.d.ts +86 -0
  44. package/dist-types/ts3.4/LakeFormationClient.d.ts +30 -0
  45. package/dist-types/ts3.4/commands/CreateLFTagExpressionCommand.d.ts +51 -0
  46. package/dist-types/ts3.4/commands/DeleteLFTagExpressionCommand.d.ts +51 -0
  47. package/dist-types/ts3.4/commands/GetLFTagExpressionCommand.d.ts +51 -0
  48. package/dist-types/ts3.4/commands/ListLFTagExpressionsCommand.d.ts +51 -0
  49. package/dist-types/ts3.4/commands/UpdateLFTagExpressionCommand.d.ts +51 -0
  50. package/dist-types/ts3.4/commands/index.d.ts +5 -0
  51. package/dist-types/ts3.4/models/models_0.d.ts +53 -1
  52. package/dist-types/ts3.4/pagination/ListLFTagExpressionsPaginator.d.ts +11 -0
  53. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  54. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +60 -0
  55. package/package.json +36 -36
@@ -6,10 +6,12 @@ export * from "./CancelTransactionCommand";
6
6
  export * from "./CommitTransactionCommand";
7
7
  export * from "./CreateDataCellsFilterCommand";
8
8
  export * from "./CreateLFTagCommand";
9
+ export * from "./CreateLFTagExpressionCommand";
9
10
  export * from "./CreateLakeFormationIdentityCenterConfigurationCommand";
10
11
  export * from "./CreateLakeFormationOptInCommand";
11
12
  export * from "./DeleteDataCellsFilterCommand";
12
13
  export * from "./DeleteLFTagCommand";
14
+ export * from "./DeleteLFTagExpressionCommand";
13
15
  export * from "./DeleteLakeFormationIdentityCenterConfigurationCommand";
14
16
  export * from "./DeleteLakeFormationOptInCommand";
15
17
  export * from "./DeleteObjectsOnCancelCommand";
@@ -23,6 +25,7 @@ export * from "./GetDataLakePrincipalCommand";
23
25
  export * from "./GetDataLakeSettingsCommand";
24
26
  export * from "./GetEffectivePermissionsForPathCommand";
25
27
  export * from "./GetLFTagCommand";
28
+ export * from "./GetLFTagExpressionCommand";
26
29
  export * from "./GetQueryStateCommand";
27
30
  export * from "./GetQueryStatisticsCommand";
28
31
  export * from "./GetResourceLFTagsCommand";
@@ -33,6 +36,7 @@ export * from "./GetWorkUnitResultsCommand";
33
36
  export * from "./GetWorkUnitsCommand";
34
37
  export * from "./GrantPermissionsCommand";
35
38
  export * from "./ListDataCellsFilterCommand";
39
+ export * from "./ListLFTagExpressionsCommand";
36
40
  export * from "./ListLFTagsCommand";
37
41
  export * from "./ListLakeFormationOptInsCommand";
38
42
  export * from "./ListPermissionsCommand";
@@ -49,6 +53,7 @@ export * from "./StartQueryPlanningCommand";
49
53
  export * from "./StartTransactionCommand";
50
54
  export * from "./UpdateDataCellsFilterCommand";
51
55
  export * from "./UpdateLFTagCommand";
56
+ export * from "./UpdateLFTagExpressionCommand";
52
57
  export * from "./UpdateLakeFormationIdentityCenterConfigurationCommand";
53
58
  export * from "./UpdateResourceCommand";
54
59
  export * from "./UpdateTableObjectsCommand";
@@ -34,6 +34,10 @@ export interface LFTagKeyResource {
34
34
  TagKey: string | undefined;
35
35
  TagValues: string[] | undefined;
36
36
  }
37
+ export interface LFTagExpressionResource {
38
+ CatalogId?: string;
39
+ Name: string | undefined;
40
+ }
37
41
  export interface LFTag {
38
42
  TagKey: string | undefined;
39
43
  TagValues: string[] | undefined;
@@ -46,7 +50,8 @@ export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
46
50
  export interface LFTagPolicyResource {
47
51
  CatalogId?: string;
48
52
  ResourceType: ResourceType | undefined;
49
- Expression: LFTag[] | undefined;
53
+ Expression?: LFTag[];
54
+ ExpressionName?: string;
50
55
  }
51
56
  export interface TableWildcard {}
52
57
  export interface TableResource {
@@ -74,6 +79,7 @@ export interface Resource {
74
79
  DataCellsFilter?: DataCellsFilterResource;
75
80
  LFTag?: LFTagKeyResource;
76
81
  LFTagPolicy?: LFTagPolicyResource;
82
+ LFTagExpression?: LFTagExpressionResource;
77
83
  }
78
84
  export interface AddLFTagsToResourceRequest {
79
85
  CatalogId?: string;
@@ -176,6 +182,7 @@ export declare const Permission: {
176
182
  readonly ASSOCIATE: "ASSOCIATE";
177
183
  readonly CREATE_DATABASE: "CREATE_DATABASE";
178
184
  readonly CREATE_LF_TAG: "CREATE_LF_TAG";
185
+ readonly CREATE_LF_TAG_EXPRESSION: "CREATE_LF_TAG_EXPRESSION";
179
186
  readonly CREATE_TABLE: "CREATE_TABLE";
180
187
  readonly DATA_LOCATION_ACCESS: "DATA_LOCATION_ACCESS";
181
188
  readonly DELETE: "DELETE";
@@ -317,6 +324,13 @@ export interface CreateLFTagRequest {
317
324
  TagValues: string[] | undefined;
318
325
  }
319
326
  export interface CreateLFTagResponse {}
327
+ export interface CreateLFTagExpressionRequest {
328
+ Name: string | undefined;
329
+ Description?: string;
330
+ CatalogId?: string;
331
+ Expression: LFTag[] | undefined;
332
+ }
333
+ export interface CreateLFTagExpressionResponse {}
320
334
  export interface DeleteDataCellsFilterRequest {
321
335
  TableCatalogId?: string;
322
336
  DatabaseName?: string;
@@ -338,6 +352,11 @@ export interface DeleteLFTagRequest {
338
352
  TagKey: string | undefined;
339
353
  }
340
354
  export interface DeleteLFTagResponse {}
355
+ export interface DeleteLFTagExpressionRequest {
356
+ Name: string | undefined;
357
+ CatalogId?: string;
358
+ }
359
+ export interface DeleteLFTagExpressionResponse {}
341
360
  export interface VirtualObject {
342
361
  Uri: string | undefined;
343
362
  ETag?: string;
@@ -468,6 +487,16 @@ export interface GetLFTagResponse {
468
487
  TagKey?: string;
469
488
  TagValues?: string[];
470
489
  }
490
+ export interface GetLFTagExpressionRequest {
491
+ Name: string | undefined;
492
+ CatalogId?: string;
493
+ }
494
+ export interface GetLFTagExpressionResponse {
495
+ Name?: string;
496
+ Description?: string;
497
+ CatalogId?: string;
498
+ Expression?: LFTag[];
499
+ }
471
500
  export interface GetQueryStateRequest {
472
501
  QueryId: string | undefined;
473
502
  }
@@ -694,6 +723,21 @@ export interface ListLakeFormationOptInsResponse {
694
723
  LakeFormationOptInsInfoList?: LakeFormationOptInsInfo[];
695
724
  NextToken?: string;
696
725
  }
726
+ export interface ListLFTagExpressionsRequest {
727
+ CatalogId?: string;
728
+ MaxResults?: number;
729
+ NextToken?: string;
730
+ }
731
+ export interface LFTagExpression {
732
+ Name?: string;
733
+ Description?: string;
734
+ CatalogId?: string;
735
+ Expression?: LFTag[];
736
+ }
737
+ export interface ListLFTagExpressionsResponse {
738
+ LFTagExpressions?: LFTagExpression[];
739
+ NextToken?: string;
740
+ }
697
741
  export declare const ResourceShareType: {
698
742
  readonly ALL: "ALL";
699
743
  readonly FOREIGN: "FOREIGN";
@@ -714,6 +758,7 @@ export declare const DataLakeResourceType: {
714
758
  readonly CATALOG: "CATALOG";
715
759
  readonly DATABASE: "DATABASE";
716
760
  readonly DATA_LOCATION: "DATA_LOCATION";
761
+ readonly LF_NAMED_TAG_EXPRESSION: "LF_NAMED_TAG_EXPRESSION";
717
762
  readonly LF_TAG: "LF_TAG";
718
763
  readonly LF_TAG_POLICY: "LF_TAG_POLICY";
719
764
  readonly LF_TAG_POLICY_DATABASE: "LF_TAG_POLICY_DATABASE";
@@ -918,6 +963,13 @@ export interface UpdateLFTagRequest {
918
963
  TagValuesToAdd?: string[];
919
964
  }
920
965
  export interface UpdateLFTagResponse {}
966
+ export interface UpdateLFTagExpressionRequest {
967
+ Name: string | undefined;
968
+ Description?: string;
969
+ CatalogId?: string;
970
+ Expression: LFTag[] | undefined;
971
+ }
972
+ export interface UpdateLFTagExpressionResponse {}
921
973
  export interface UpdateResourceRequest {
922
974
  RoleArn: string | undefined;
923
975
  ResourceArn: string | undefined;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListLFTagExpressionsCommandInput,
4
+ ListLFTagExpressionsCommandOutput,
5
+ } from "../commands/ListLFTagExpressionsCommand";
6
+ import { LakeFormationPaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListLFTagExpressions: (
8
+ config: LakeFormationPaginationConfiguration,
9
+ input: ListLFTagExpressionsCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListLFTagExpressionsCommandOutput>;
@@ -3,6 +3,7 @@ export * from "./GetTableObjectsPaginator";
3
3
  export * from "./GetWorkUnitsPaginator";
4
4
  export * from "./Interfaces";
5
5
  export * from "./ListDataCellsFilterPaginator";
6
+ export * from "./ListLFTagExpressionsPaginator";
6
7
  export * from "./ListLFTagsPaginator";
7
8
  export * from "./ListLakeFormationOptInsPaginator";
8
9
  export * from "./ListPermissionsPaginator";
@@ -46,6 +46,10 @@ import {
46
46
  CreateLFTagCommandInput,
47
47
  CreateLFTagCommandOutput,
48
48
  } from "../commands/CreateLFTagCommand";
49
+ import {
50
+ CreateLFTagExpressionCommandInput,
51
+ CreateLFTagExpressionCommandOutput,
52
+ } from "../commands/CreateLFTagExpressionCommand";
49
53
  import {
50
54
  DeleteDataCellsFilterCommandInput,
51
55
  DeleteDataCellsFilterCommandOutput,
@@ -62,6 +66,10 @@ import {
62
66
  DeleteLFTagCommandInput,
63
67
  DeleteLFTagCommandOutput,
64
68
  } from "../commands/DeleteLFTagCommand";
69
+ import {
70
+ DeleteLFTagExpressionCommandInput,
71
+ DeleteLFTagExpressionCommandOutput,
72
+ } from "../commands/DeleteLFTagExpressionCommand";
65
73
  import {
66
74
  DeleteObjectsOnCancelCommandInput,
67
75
  DeleteObjectsOnCancelCommandOutput,
@@ -106,6 +114,10 @@ import {
106
114
  GetLFTagCommandInput,
107
115
  GetLFTagCommandOutput,
108
116
  } from "../commands/GetLFTagCommand";
117
+ import {
118
+ GetLFTagExpressionCommandInput,
119
+ GetLFTagExpressionCommandOutput,
120
+ } from "../commands/GetLFTagExpressionCommand";
109
121
  import {
110
122
  GetQueryStateCommandInput,
111
123
  GetQueryStateCommandOutput,
@@ -150,6 +162,10 @@ import {
150
162
  ListLakeFormationOptInsCommandInput,
151
163
  ListLakeFormationOptInsCommandOutput,
152
164
  } from "../commands/ListLakeFormationOptInsCommand";
165
+ import {
166
+ ListLFTagExpressionsCommandInput,
167
+ ListLFTagExpressionsCommandOutput,
168
+ } from "../commands/ListLFTagExpressionsCommand";
153
169
  import {
154
170
  ListLFTagsCommandInput,
155
171
  ListLFTagsCommandOutput,
@@ -214,6 +230,10 @@ import {
214
230
  UpdateLFTagCommandInput,
215
231
  UpdateLFTagCommandOutput,
216
232
  } from "../commands/UpdateLFTagCommand";
233
+ import {
234
+ UpdateLFTagExpressionCommandInput,
235
+ UpdateLFTagExpressionCommandOutput,
236
+ } from "../commands/UpdateLFTagExpressionCommand";
217
237
  import {
218
238
  UpdateResourceCommandInput,
219
239
  UpdateResourceCommandOutput,
@@ -266,6 +286,10 @@ export declare const se_CreateLFTagCommand: (
266
286
  input: CreateLFTagCommandInput,
267
287
  context: __SerdeContext
268
288
  ) => Promise<__HttpRequest>;
289
+ export declare const se_CreateLFTagExpressionCommand: (
290
+ input: CreateLFTagExpressionCommandInput,
291
+ context: __SerdeContext
292
+ ) => Promise<__HttpRequest>;
269
293
  export declare const se_DeleteDataCellsFilterCommand: (
270
294
  input: DeleteDataCellsFilterCommandInput,
271
295
  context: __SerdeContext
@@ -282,6 +306,10 @@ export declare const se_DeleteLFTagCommand: (
282
306
  input: DeleteLFTagCommandInput,
283
307
  context: __SerdeContext
284
308
  ) => Promise<__HttpRequest>;
309
+ export declare const se_DeleteLFTagExpressionCommand: (
310
+ input: DeleteLFTagExpressionCommandInput,
311
+ context: __SerdeContext
312
+ ) => Promise<__HttpRequest>;
285
313
  export declare const se_DeleteObjectsOnCancelCommand: (
286
314
  input: DeleteObjectsOnCancelCommandInput,
287
315
  context: __SerdeContext
@@ -326,6 +354,10 @@ export declare const se_GetLFTagCommand: (
326
354
  input: GetLFTagCommandInput,
327
355
  context: __SerdeContext
328
356
  ) => Promise<__HttpRequest>;
357
+ export declare const se_GetLFTagExpressionCommand: (
358
+ input: GetLFTagExpressionCommandInput,
359
+ context: __SerdeContext
360
+ ) => Promise<__HttpRequest>;
329
361
  export declare const se_GetQueryStateCommand: (
330
362
  input: GetQueryStateCommandInput,
331
363
  context: __SerdeContext
@@ -370,6 +402,10 @@ export declare const se_ListLakeFormationOptInsCommand: (
370
402
  input: ListLakeFormationOptInsCommandInput,
371
403
  context: __SerdeContext
372
404
  ) => Promise<__HttpRequest>;
405
+ export declare const se_ListLFTagExpressionsCommand: (
406
+ input: ListLFTagExpressionsCommandInput,
407
+ context: __SerdeContext
408
+ ) => Promise<__HttpRequest>;
373
409
  export declare const se_ListLFTagsCommand: (
374
410
  input: ListLFTagsCommandInput,
375
411
  context: __SerdeContext
@@ -434,6 +470,10 @@ export declare const se_UpdateLFTagCommand: (
434
470
  input: UpdateLFTagCommandInput,
435
471
  context: __SerdeContext
436
472
  ) => Promise<__HttpRequest>;
473
+ export declare const se_UpdateLFTagExpressionCommand: (
474
+ input: UpdateLFTagExpressionCommandInput,
475
+ context: __SerdeContext
476
+ ) => Promise<__HttpRequest>;
437
477
  export declare const se_UpdateResourceCommand: (
438
478
  input: UpdateResourceCommandInput,
439
479
  context: __SerdeContext
@@ -486,6 +526,10 @@ export declare const de_CreateLFTagCommand: (
486
526
  output: __HttpResponse,
487
527
  context: __SerdeContext
488
528
  ) => Promise<CreateLFTagCommandOutput>;
529
+ export declare const de_CreateLFTagExpressionCommand: (
530
+ output: __HttpResponse,
531
+ context: __SerdeContext
532
+ ) => Promise<CreateLFTagExpressionCommandOutput>;
489
533
  export declare const de_DeleteDataCellsFilterCommand: (
490
534
  output: __HttpResponse,
491
535
  context: __SerdeContext
@@ -502,6 +546,10 @@ export declare const de_DeleteLFTagCommand: (
502
546
  output: __HttpResponse,
503
547
  context: __SerdeContext
504
548
  ) => Promise<DeleteLFTagCommandOutput>;
549
+ export declare const de_DeleteLFTagExpressionCommand: (
550
+ output: __HttpResponse,
551
+ context: __SerdeContext
552
+ ) => Promise<DeleteLFTagExpressionCommandOutput>;
505
553
  export declare const de_DeleteObjectsOnCancelCommand: (
506
554
  output: __HttpResponse,
507
555
  context: __SerdeContext
@@ -546,6 +594,10 @@ export declare const de_GetLFTagCommand: (
546
594
  output: __HttpResponse,
547
595
  context: __SerdeContext
548
596
  ) => Promise<GetLFTagCommandOutput>;
597
+ export declare const de_GetLFTagExpressionCommand: (
598
+ output: __HttpResponse,
599
+ context: __SerdeContext
600
+ ) => Promise<GetLFTagExpressionCommandOutput>;
549
601
  export declare const de_GetQueryStateCommand: (
550
602
  output: __HttpResponse,
551
603
  context: __SerdeContext
@@ -590,6 +642,10 @@ export declare const de_ListLakeFormationOptInsCommand: (
590
642
  output: __HttpResponse,
591
643
  context: __SerdeContext
592
644
  ) => Promise<ListLakeFormationOptInsCommandOutput>;
645
+ export declare const de_ListLFTagExpressionsCommand: (
646
+ output: __HttpResponse,
647
+ context: __SerdeContext
648
+ ) => Promise<ListLFTagExpressionsCommandOutput>;
593
649
  export declare const de_ListLFTagsCommand: (
594
650
  output: __HttpResponse,
595
651
  context: __SerdeContext
@@ -654,6 +710,10 @@ export declare const de_UpdateLFTagCommand: (
654
710
  output: __HttpResponse,
655
711
  context: __SerdeContext
656
712
  ) => Promise<UpdateLFTagCommandOutput>;
713
+ export declare const de_UpdateLFTagExpressionCommand: (
714
+ output: __HttpResponse,
715
+ context: __SerdeContext
716
+ ) => Promise<UpdateLFTagExpressionCommandOutput>;
657
717
  export declare const de_UpdateResourceCommand: (
658
718
  output: __HttpResponse,
659
719
  context: __SerdeContext
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-lakeformation",
3
3
  "description": "AWS SDK for JavaScript Lakeformation Client for Node.js, Browser and React Native",
4
- "version": "3.679.0",
4
+ "version": "3.686.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-lakeformation",
@@ -20,44 +20,44 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/client-sso-oidc": "3.679.0",
24
- "@aws-sdk/client-sts": "3.679.0",
25
- "@aws-sdk/core": "3.679.0",
26
- "@aws-sdk/credential-provider-node": "3.679.0",
27
- "@aws-sdk/middleware-host-header": "3.679.0",
28
- "@aws-sdk/middleware-logger": "3.679.0",
29
- "@aws-sdk/middleware-recursion-detection": "3.679.0",
30
- "@aws-sdk/middleware-user-agent": "3.679.0",
31
- "@aws-sdk/region-config-resolver": "3.679.0",
32
- "@aws-sdk/types": "3.679.0",
33
- "@aws-sdk/util-endpoints": "3.679.0",
34
- "@aws-sdk/util-user-agent-browser": "3.679.0",
35
- "@aws-sdk/util-user-agent-node": "3.679.0",
36
- "@smithy/config-resolver": "^3.0.9",
37
- "@smithy/core": "^2.4.8",
38
- "@smithy/fetch-http-handler": "^3.2.9",
39
- "@smithy/hash-node": "^3.0.7",
40
- "@smithy/invalid-dependency": "^3.0.7",
41
- "@smithy/middleware-content-length": "^3.0.9",
42
- "@smithy/middleware-endpoint": "^3.1.4",
43
- "@smithy/middleware-retry": "^3.0.23",
44
- "@smithy/middleware-serde": "^3.0.7",
45
- "@smithy/middleware-stack": "^3.0.7",
46
- "@smithy/node-config-provider": "^3.1.8",
47
- "@smithy/node-http-handler": "^3.2.4",
48
- "@smithy/protocol-http": "^4.1.4",
49
- "@smithy/smithy-client": "^3.4.0",
50
- "@smithy/types": "^3.5.0",
51
- "@smithy/url-parser": "^3.0.7",
23
+ "@aws-sdk/client-sso-oidc": "3.686.0",
24
+ "@aws-sdk/client-sts": "3.686.0",
25
+ "@aws-sdk/core": "3.686.0",
26
+ "@aws-sdk/credential-provider-node": "3.686.0",
27
+ "@aws-sdk/middleware-host-header": "3.686.0",
28
+ "@aws-sdk/middleware-logger": "3.686.0",
29
+ "@aws-sdk/middleware-recursion-detection": "3.686.0",
30
+ "@aws-sdk/middleware-user-agent": "3.686.0",
31
+ "@aws-sdk/region-config-resolver": "3.686.0",
32
+ "@aws-sdk/types": "3.686.0",
33
+ "@aws-sdk/util-endpoints": "3.686.0",
34
+ "@aws-sdk/util-user-agent-browser": "3.686.0",
35
+ "@aws-sdk/util-user-agent-node": "3.686.0",
36
+ "@smithy/config-resolver": "^3.0.10",
37
+ "@smithy/core": "^2.5.1",
38
+ "@smithy/fetch-http-handler": "^4.0.0",
39
+ "@smithy/hash-node": "^3.0.8",
40
+ "@smithy/invalid-dependency": "^3.0.8",
41
+ "@smithy/middleware-content-length": "^3.0.10",
42
+ "@smithy/middleware-endpoint": "^3.2.1",
43
+ "@smithy/middleware-retry": "^3.0.25",
44
+ "@smithy/middleware-serde": "^3.0.8",
45
+ "@smithy/middleware-stack": "^3.0.8",
46
+ "@smithy/node-config-provider": "^3.1.9",
47
+ "@smithy/node-http-handler": "^3.2.5",
48
+ "@smithy/protocol-http": "^4.1.5",
49
+ "@smithy/smithy-client": "^3.4.2",
50
+ "@smithy/types": "^3.6.0",
51
+ "@smithy/url-parser": "^3.0.8",
52
52
  "@smithy/util-base64": "^3.0.0",
53
53
  "@smithy/util-body-length-browser": "^3.0.0",
54
54
  "@smithy/util-body-length-node": "^3.0.0",
55
- "@smithy/util-defaults-mode-browser": "^3.0.23",
56
- "@smithy/util-defaults-mode-node": "^3.0.23",
57
- "@smithy/util-endpoints": "^2.1.3",
58
- "@smithy/util-middleware": "^3.0.7",
59
- "@smithy/util-retry": "^3.0.7",
60
- "@smithy/util-stream": "^3.1.9",
55
+ "@smithy/util-defaults-mode-browser": "^3.0.25",
56
+ "@smithy/util-defaults-mode-node": "^3.0.25",
57
+ "@smithy/util-endpoints": "^2.1.4",
58
+ "@smithy/util-middleware": "^3.0.8",
59
+ "@smithy/util-retry": "^3.0.8",
60
+ "@smithy/util-stream": "^3.2.1",
61
61
  "@smithy/util-utf8": "^3.0.0",
62
62
  "tslib": "^2.6.2"
63
63
  },