@aws-sdk/client-lakeformation 3.45.0 → 3.46.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 (30) hide show
  1. package/CHANGELOG.md +18 -0
  2. package/dist-cjs/LakeFormation.js +30 -0
  3. package/dist-cjs/commands/GetTemporaryGluePartitionCredentialsCommand.js +36 -0
  4. package/dist-cjs/commands/GetTemporaryGlueTableCredentialsCommand.js +36 -0
  5. package/dist-cjs/commands/index.js +2 -0
  6. package/dist-cjs/models/models_0.js +51 -4
  7. package/dist-cjs/protocols/Aws_restJson1.js +348 -2
  8. package/dist-cjs/runtimeConfig.js +0 -2
  9. package/dist-es/LakeFormation.js +30 -0
  10. package/dist-es/commands/GetTemporaryGluePartitionCredentialsCommand.js +39 -0
  11. package/dist-es/commands/GetTemporaryGlueTableCredentialsCommand.js +39 -0
  12. package/dist-es/commands/index.js +2 -0
  13. package/dist-es/models/models_0.js +33 -0
  14. package/dist-es/protocols/Aws_restJson1.js +369 -2
  15. package/dist-es/runtimeConfig.js +0 -2
  16. package/dist-types/LakeFormation.d.ts +14 -0
  17. package/dist-types/LakeFormationClient.d.ts +4 -2
  18. package/dist-types/commands/GetTemporaryGluePartitionCredentialsCommand.d.ts +35 -0
  19. package/dist-types/commands/GetTemporaryGlueTableCredentialsCommand.d.ts +35 -0
  20. package/dist-types/commands/index.d.ts +2 -0
  21. package/dist-types/models/models_0.d.ts +182 -1
  22. package/dist-types/protocols/Aws_restJson1.d.ts +6 -0
  23. package/dist-types/ts3.4/LakeFormation.d.ts +10 -0
  24. package/dist-types/ts3.4/LakeFormationClient.d.ts +4 -2
  25. package/dist-types/ts3.4/commands/GetTemporaryGluePartitionCredentialsCommand.d.ts +17 -0
  26. package/dist-types/ts3.4/commands/GetTemporaryGlueTableCredentialsCommand.d.ts +17 -0
  27. package/dist-types/ts3.4/commands/index.d.ts +2 -0
  28. package/dist-types/ts3.4/models/models_0.d.ts +101 -0
  29. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +6 -0
  30. package/package.json +36 -43
@@ -527,6 +527,21 @@ export declare namespace AlreadyExistsException {
527
527
  */
528
528
  const filterSensitiveLog: (obj: AlreadyExistsException) => any;
529
529
  }
530
+ /**
531
+ * <p>A structure used to include auditing information on the privileged API. </p>
532
+ */
533
+ export interface AuditContext {
534
+ /**
535
+ * <p>The filter engine can populate the 'AdditionalAuditContext' information with the request ID for you to track. This information will be displayed in CloudTrail log in your account.</p>
536
+ */
537
+ AdditionalAuditContext?: string;
538
+ }
539
+ export declare namespace AuditContext {
540
+ /**
541
+ * @internal
542
+ */
543
+ const filterSensitiveLog: (obj: AuditContext) => any;
544
+ }
530
545
  export declare enum Permission {
531
546
  ALL = "ALL",
532
547
  ALTER = "ALTER",
@@ -545,7 +560,8 @@ export declare enum Permission {
545
560
  SELECT = "SELECT"
546
561
  }
547
562
  /**
548
- * <p>The AWS Lake Formation principal. Supported principals are IAM users or IAM roles.</p>
563
+ * <p>The Lake Formation principal. Supported principals are IAM users
564
+ * or IAM roles.</p>
549
565
  */
550
566
  export interface DataLakePrincipal {
551
567
  /**
@@ -815,6 +831,9 @@ export interface DataCellsFilter {
815
831
  ColumnNames?: string[];
816
832
  /**
817
833
  * <p>A wildcard with exclusions.</p>
834
+ *
835
+ * <p>You must specify either a <code>ColumnNames</code> list or the
836
+ * <code>ColumnWildCard</code>. </p>
818
837
  */
819
838
  ColumnWildcard?: ColumnWildcard;
820
839
  }
@@ -1221,6 +1240,24 @@ export interface DataLakeSettings {
1221
1240
  * <p>You may want to specify this property when you are in a high-trust boundary, such as the same team or company. </p>
1222
1241
  */
1223
1242
  TrustedResourceOwners?: string[];
1243
+ /**
1244
+ * <p>Whether to allow Amazon EMR clusters to access data managed by Lake Formation. </p>
1245
+ *
1246
+ * <p>If true, you allow Amazon EMR clusters to access data in Amazon S3 locations that are registered with Lake Formation.</p>
1247
+ *
1248
+ * <p>If false or null, no Amazon EMR clusters will be able to access data in Amazon S3 locations that are registered with Lake Formation.</p>
1249
+ *
1250
+ * <p>For more information, see <a href="https://docs-aws.amazon.com/lake-formation/latest/dg/getting-started-setup.html#emr-switch">(Optional) Allow Data Filtering on Amazon EMR</a>.</p>
1251
+ */
1252
+ AllowExternalDataFiltering?: boolean;
1253
+ /**
1254
+ * <p>A list of the account IDs of Amazon Web Services accounts with Amazon EMR clusters that are to perform data filtering.></p>
1255
+ */
1256
+ ExternalDataFilteringAllowList?: DataLakePrincipal[];
1257
+ /**
1258
+ * <p>Lake Formation relies on a privileged process secured by Amazon EMR or the third party integrator to tag the user's role while assuming it. Lake Formation will publish the acceptable key-value pair, for example key = "LakeFormationTrustedCaller" and value = "TRUE" and the third party integrator must properly tag the temporary security credentials that will be used to call Lake Formation's administrative APIs.</p>
1259
+ */
1260
+ AuthorizedSessionTagValueList?: string[];
1224
1261
  }
1225
1262
  export declare namespace DataLakeSettings {
1226
1263
  /**
@@ -1738,6 +1775,150 @@ export declare namespace GetTableObjectsResponse {
1738
1775
  */
1739
1776
  const filterSensitiveLog: (obj: GetTableObjectsResponse) => any;
1740
1777
  }
1778
+ /**
1779
+ * <p>Contains a list of values defining partitions.</p>
1780
+ */
1781
+ export interface PartitionValueList {
1782
+ /**
1783
+ * <p>The list of partition values.</p>
1784
+ */
1785
+ Values: string[] | undefined;
1786
+ }
1787
+ export declare namespace PartitionValueList {
1788
+ /**
1789
+ * @internal
1790
+ */
1791
+ const filterSensitiveLog: (obj: PartitionValueList) => any;
1792
+ }
1793
+ export declare enum PermissionType {
1794
+ CELL_FILTER_PERMISSION = "CELL_FILTER_PERMISSION",
1795
+ COLUMN_PERMISSION = "COLUMN_PERMISSION"
1796
+ }
1797
+ export interface GetTemporaryGluePartitionCredentialsRequest {
1798
+ /**
1799
+ * <p>The ARN of the partitions' table.</p>
1800
+ */
1801
+ TableArn: string | undefined;
1802
+ /**
1803
+ * <p>A list of partition values identifying a single partition.</p>
1804
+ */
1805
+ Partition: PartitionValueList | undefined;
1806
+ /**
1807
+ * <p>Filters the request based on the user having been granted a list of specified permissions on the requested resource(s).</p>
1808
+ */
1809
+ Permissions?: (Permission | string)[];
1810
+ /**
1811
+ * <p>The time period, between 900 and 21,600 seconds, for the timeout of the temporary credentials.</p>
1812
+ */
1813
+ DurationSeconds?: number;
1814
+ /**
1815
+ * <p>A structure representing context to access a resource (column names, query ID, etc).</p>
1816
+ */
1817
+ AuditContext?: AuditContext;
1818
+ /**
1819
+ * <p>A list of supported permission types for the partition. Valid values are <code>COLUMN_PERMISSION</code> and <code>CELL_FILTER_PERMISSION</code>.</p>
1820
+ */
1821
+ SupportedPermissionTypes: (PermissionType | string)[] | undefined;
1822
+ }
1823
+ export declare namespace GetTemporaryGluePartitionCredentialsRequest {
1824
+ /**
1825
+ * @internal
1826
+ */
1827
+ const filterSensitiveLog: (obj: GetTemporaryGluePartitionCredentialsRequest) => any;
1828
+ }
1829
+ export interface GetTemporaryGluePartitionCredentialsResponse {
1830
+ /**
1831
+ * <p>The access key ID for the temporary credentials.</p>
1832
+ */
1833
+ AccessKeyId?: string;
1834
+ /**
1835
+ * <p>The secret key for the temporary credentials.</p>
1836
+ */
1837
+ SecretAccessKey?: string;
1838
+ /**
1839
+ * <p>The session token for the temporary credentials.</p>
1840
+ */
1841
+ SessionToken?: string;
1842
+ /**
1843
+ * <p>The date and time when the temporary credentials expire.</p>
1844
+ */
1845
+ Expiration?: Date;
1846
+ }
1847
+ export declare namespace GetTemporaryGluePartitionCredentialsResponse {
1848
+ /**
1849
+ * @internal
1850
+ */
1851
+ const filterSensitiveLog: (obj: GetTemporaryGluePartitionCredentialsResponse) => any;
1852
+ }
1853
+ /**
1854
+ * <p>The engine does not support filtering data based on the enforced permissions. For example, if you call the <code>GetTemporaryGlueTableCredentials</code> operation with <code>SupportedPermissionType</code> equal to <code>ColumnPermission</code>, but cell-level permissions exist on the table, this exception is thrown.</p>
1855
+ */
1856
+ export interface PermissionTypeMismatchException extends __SmithyException, $MetadataBearer {
1857
+ name: "PermissionTypeMismatchException";
1858
+ $fault: "client";
1859
+ /**
1860
+ * <p>A message describing the problem.</p>
1861
+ */
1862
+ Message?: string;
1863
+ }
1864
+ export declare namespace PermissionTypeMismatchException {
1865
+ /**
1866
+ * @internal
1867
+ */
1868
+ const filterSensitiveLog: (obj: PermissionTypeMismatchException) => any;
1869
+ }
1870
+ export interface GetTemporaryGlueTableCredentialsRequest {
1871
+ /**
1872
+ * <p>The ARN identifying a table in the Data Catalog for the temporary credentials request.</p>
1873
+ */
1874
+ TableArn: string | undefined;
1875
+ /**
1876
+ * <p>Filters the request based on the user having been granted a list of specified permissions on the requested resource(s).</p>
1877
+ */
1878
+ Permissions?: (Permission | string)[];
1879
+ /**
1880
+ * <p>The time period, between 900 and 21,600 seconds, for the timeout of the temporary credentials.</p>
1881
+ */
1882
+ DurationSeconds?: number;
1883
+ /**
1884
+ * <p>A structure representing context to access a resource (column names, query ID, etc).</p>
1885
+ */
1886
+ AuditContext?: AuditContext;
1887
+ /**
1888
+ * <p>A list of supported permission types for the table. Valid values are <code>COLUMN_PERMISSION</code> and <code>CELL_FILTER_PERMISSION</code>.</p>
1889
+ */
1890
+ SupportedPermissionTypes: (PermissionType | string)[] | undefined;
1891
+ }
1892
+ export declare namespace GetTemporaryGlueTableCredentialsRequest {
1893
+ /**
1894
+ * @internal
1895
+ */
1896
+ const filterSensitiveLog: (obj: GetTemporaryGlueTableCredentialsRequest) => any;
1897
+ }
1898
+ export interface GetTemporaryGlueTableCredentialsResponse {
1899
+ /**
1900
+ * <p>The access key ID for the temporary credentials.</p>
1901
+ */
1902
+ AccessKeyId?: string;
1903
+ /**
1904
+ * <p>The secret key for the temporary credentials.</p>
1905
+ */
1906
+ SecretAccessKey?: string;
1907
+ /**
1908
+ * <p>The session token for the temporary credentials.</p>
1909
+ */
1910
+ SessionToken?: string;
1911
+ /**
1912
+ * <p>The date and time when the temporary credentials expire.</p>
1913
+ */
1914
+ Expiration?: Date;
1915
+ }
1916
+ export declare namespace GetTemporaryGlueTableCredentialsResponse {
1917
+ /**
1918
+ * @internal
1919
+ */
1920
+ const filterSensitiveLog: (obj: GetTemporaryGlueTableCredentialsResponse) => any;
1921
+ }
1741
1922
  export interface GetWorkUnitResultsRequest {
1742
1923
  /**
1743
1924
  * <p>The ID of the plan query operation for which to get results.</p>
@@ -21,6 +21,8 @@ import { GetQueryStateCommandInput, GetQueryStateCommandOutput } from "../comman
21
21
  import { GetQueryStatisticsCommandInput, GetQueryStatisticsCommandOutput } from "../commands/GetQueryStatisticsCommand";
22
22
  import { GetResourceLFTagsCommandInput, GetResourceLFTagsCommandOutput } from "../commands/GetResourceLFTagsCommand";
23
23
  import { GetTableObjectsCommandInput, GetTableObjectsCommandOutput } from "../commands/GetTableObjectsCommand";
24
+ import { GetTemporaryGluePartitionCredentialsCommandInput, GetTemporaryGluePartitionCredentialsCommandOutput } from "../commands/GetTemporaryGluePartitionCredentialsCommand";
25
+ import { GetTemporaryGlueTableCredentialsCommandInput, GetTemporaryGlueTableCredentialsCommandOutput } from "../commands/GetTemporaryGlueTableCredentialsCommand";
24
26
  import { GetWorkUnitResultsCommandInput, GetWorkUnitResultsCommandOutput } from "../commands/GetWorkUnitResultsCommand";
25
27
  import { GetWorkUnitsCommandInput, GetWorkUnitsCommandOutput } from "../commands/GetWorkUnitsCommand";
26
28
  import { GrantPermissionsCommandInput, GrantPermissionsCommandOutput } from "../commands/GrantPermissionsCommand";
@@ -63,6 +65,8 @@ export declare const serializeAws_restJson1GetQueryStateCommand: (input: GetQuer
63
65
  export declare const serializeAws_restJson1GetQueryStatisticsCommand: (input: GetQueryStatisticsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
64
66
  export declare const serializeAws_restJson1GetResourceLFTagsCommand: (input: GetResourceLFTagsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
65
67
  export declare const serializeAws_restJson1GetTableObjectsCommand: (input: GetTableObjectsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
68
+ export declare const serializeAws_restJson1GetTemporaryGluePartitionCredentialsCommand: (input: GetTemporaryGluePartitionCredentialsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
69
+ export declare const serializeAws_restJson1GetTemporaryGlueTableCredentialsCommand: (input: GetTemporaryGlueTableCredentialsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
66
70
  export declare const serializeAws_restJson1GetWorkUnitResultsCommand: (input: GetWorkUnitResultsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
67
71
  export declare const serializeAws_restJson1GetWorkUnitsCommand: (input: GetWorkUnitsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
68
72
  export declare const serializeAws_restJson1GrantPermissionsCommand: (input: GrantPermissionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -105,6 +109,8 @@ export declare const deserializeAws_restJson1GetQueryStateCommand: (output: __Ht
105
109
  export declare const deserializeAws_restJson1GetQueryStatisticsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetQueryStatisticsCommandOutput>;
106
110
  export declare const deserializeAws_restJson1GetResourceLFTagsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetResourceLFTagsCommandOutput>;
107
111
  export declare const deserializeAws_restJson1GetTableObjectsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetTableObjectsCommandOutput>;
112
+ export declare const deserializeAws_restJson1GetTemporaryGluePartitionCredentialsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetTemporaryGluePartitionCredentialsCommandOutput>;
113
+ export declare const deserializeAws_restJson1GetTemporaryGlueTableCredentialsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetTemporaryGlueTableCredentialsCommandOutput>;
108
114
  export declare const deserializeAws_restJson1GetWorkUnitResultsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetWorkUnitResultsCommandOutput>;
109
115
  export declare const deserializeAws_restJson1GetWorkUnitsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetWorkUnitsCommandOutput>;
110
116
  export declare const deserializeAws_restJson1GrantPermissionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GrantPermissionsCommandOutput>;
@@ -20,6 +20,8 @@ import { GetQueryStateCommandInput, GetQueryStateCommandOutput } from "./command
20
20
  import { GetQueryStatisticsCommandInput, GetQueryStatisticsCommandOutput } from "./commands/GetQueryStatisticsCommand";
21
21
  import { GetResourceLFTagsCommandInput, GetResourceLFTagsCommandOutput } from "./commands/GetResourceLFTagsCommand";
22
22
  import { GetTableObjectsCommandInput, GetTableObjectsCommandOutput } from "./commands/GetTableObjectsCommand";
23
+ import { GetTemporaryGluePartitionCredentialsCommandInput, GetTemporaryGluePartitionCredentialsCommandOutput } from "./commands/GetTemporaryGluePartitionCredentialsCommand";
24
+ import { GetTemporaryGlueTableCredentialsCommandInput, GetTemporaryGlueTableCredentialsCommandOutput } from "./commands/GetTemporaryGlueTableCredentialsCommand";
23
25
  import { GetWorkUnitResultsCommandInput, GetWorkUnitResultsCommandOutput } from "./commands/GetWorkUnitResultsCommand";
24
26
  import { GetWorkUnitsCommandInput, GetWorkUnitsCommandOutput } from "./commands/GetWorkUnitsCommand";
25
27
  import { GrantPermissionsCommandInput, GrantPermissionsCommandOutput } from "./commands/GrantPermissionsCommand";
@@ -129,6 +131,14 @@ export declare class LakeFormation extends LakeFormationClient {
129
131
  getTableObjects(args: GetTableObjectsCommandInput, cb: (err: any, data?: GetTableObjectsCommandOutput) => void): void;
130
132
  getTableObjects(args: GetTableObjectsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetTableObjectsCommandOutput) => void): void;
131
133
 
134
+ getTemporaryGluePartitionCredentials(args: GetTemporaryGluePartitionCredentialsCommandInput, options?: __HttpHandlerOptions): Promise<GetTemporaryGluePartitionCredentialsCommandOutput>;
135
+ getTemporaryGluePartitionCredentials(args: GetTemporaryGluePartitionCredentialsCommandInput, cb: (err: any, data?: GetTemporaryGluePartitionCredentialsCommandOutput) => void): void;
136
+ getTemporaryGluePartitionCredentials(args: GetTemporaryGluePartitionCredentialsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetTemporaryGluePartitionCredentialsCommandOutput) => void): void;
137
+
138
+ getTemporaryGlueTableCredentials(args: GetTemporaryGlueTableCredentialsCommandInput, options?: __HttpHandlerOptions): Promise<GetTemporaryGlueTableCredentialsCommandOutput>;
139
+ getTemporaryGlueTableCredentials(args: GetTemporaryGlueTableCredentialsCommandInput, cb: (err: any, data?: GetTemporaryGlueTableCredentialsCommandOutput) => void): void;
140
+ getTemporaryGlueTableCredentials(args: GetTemporaryGlueTableCredentialsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetTemporaryGlueTableCredentialsCommandOutput) => void): void;
141
+
132
142
  getWorkUnitResults(args: GetWorkUnitResultsCommandInput, options?: __HttpHandlerOptions): Promise<GetWorkUnitResultsCommandOutput>;
133
143
  getWorkUnitResults(args: GetWorkUnitResultsCommandInput, cb: (err: any, data?: GetWorkUnitResultsCommandOutput) => void): void;
134
144
  getWorkUnitResults(args: GetWorkUnitResultsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetWorkUnitResultsCommandOutput) => void): void;
@@ -27,6 +27,8 @@ import { GetQueryStateCommandInput, GetQueryStateCommandOutput } from "./command
27
27
  import { GetQueryStatisticsCommandInput, GetQueryStatisticsCommandOutput } from "./commands/GetQueryStatisticsCommand";
28
28
  import { GetResourceLFTagsCommandInput, GetResourceLFTagsCommandOutput } from "./commands/GetResourceLFTagsCommand";
29
29
  import { GetTableObjectsCommandInput, GetTableObjectsCommandOutput } from "./commands/GetTableObjectsCommand";
30
+ import { GetTemporaryGluePartitionCredentialsCommandInput, GetTemporaryGluePartitionCredentialsCommandOutput } from "./commands/GetTemporaryGluePartitionCredentialsCommand";
31
+ import { GetTemporaryGlueTableCredentialsCommandInput, GetTemporaryGlueTableCredentialsCommandOutput } from "./commands/GetTemporaryGlueTableCredentialsCommand";
30
32
  import { GetWorkUnitResultsCommandInput, GetWorkUnitResultsCommandOutput } from "./commands/GetWorkUnitResultsCommand";
31
33
  import { GetWorkUnitsCommandInput, GetWorkUnitsCommandOutput } from "./commands/GetWorkUnitsCommand";
32
34
  import { GrantPermissionsCommandInput, GrantPermissionsCommandOutput } from "./commands/GrantPermissionsCommand";
@@ -48,8 +50,8 @@ import { UpdateLFTagCommandInput, UpdateLFTagCommandOutput } from "./commands/Up
48
50
  import { UpdateResourceCommandInput, UpdateResourceCommandOutput } from "./commands/UpdateResourceCommand";
49
51
  import { UpdateTableObjectsCommandInput, UpdateTableObjectsCommandOutput } from "./commands/UpdateTableObjectsCommand";
50
52
  import { UpdateTableStorageOptimizerCommandInput, UpdateTableStorageOptimizerCommandOutput } from "./commands/UpdateTableStorageOptimizerCommand";
51
- export declare type ServiceInputTypes = AddLFTagsToResourceCommandInput | BatchGrantPermissionsCommandInput | BatchRevokePermissionsCommandInput | CancelTransactionCommandInput | CommitTransactionCommandInput | CreateDataCellsFilterCommandInput | CreateLFTagCommandInput | DeleteDataCellsFilterCommandInput | DeleteLFTagCommandInput | DeleteObjectsOnCancelCommandInput | DeregisterResourceCommandInput | DescribeResourceCommandInput | DescribeTransactionCommandInput | ExtendTransactionCommandInput | GetDataLakeSettingsCommandInput | GetEffectivePermissionsForPathCommandInput | GetLFTagCommandInput | GetQueryStateCommandInput | GetQueryStatisticsCommandInput | GetResourceLFTagsCommandInput | GetTableObjectsCommandInput | GetWorkUnitResultsCommandInput | GetWorkUnitsCommandInput | GrantPermissionsCommandInput | ListDataCellsFilterCommandInput | ListLFTagsCommandInput | ListPermissionsCommandInput | ListResourcesCommandInput | ListTableStorageOptimizersCommandInput | ListTransactionsCommandInput | PutDataLakeSettingsCommandInput | RegisterResourceCommandInput | RemoveLFTagsFromResourceCommandInput | RevokePermissionsCommandInput | SearchDatabasesByLFTagsCommandInput | SearchTablesByLFTagsCommandInput | StartQueryPlanningCommandInput | StartTransactionCommandInput | UpdateLFTagCommandInput | UpdateResourceCommandInput | UpdateTableObjectsCommandInput | UpdateTableStorageOptimizerCommandInput;
52
- export declare type ServiceOutputTypes = AddLFTagsToResourceCommandOutput | BatchGrantPermissionsCommandOutput | BatchRevokePermissionsCommandOutput | CancelTransactionCommandOutput | CommitTransactionCommandOutput | CreateDataCellsFilterCommandOutput | CreateLFTagCommandOutput | DeleteDataCellsFilterCommandOutput | DeleteLFTagCommandOutput | DeleteObjectsOnCancelCommandOutput | DeregisterResourceCommandOutput | DescribeResourceCommandOutput | DescribeTransactionCommandOutput | ExtendTransactionCommandOutput | GetDataLakeSettingsCommandOutput | GetEffectivePermissionsForPathCommandOutput | GetLFTagCommandOutput | GetQueryStateCommandOutput | GetQueryStatisticsCommandOutput | GetResourceLFTagsCommandOutput | GetTableObjectsCommandOutput | GetWorkUnitResultsCommandOutput | GetWorkUnitsCommandOutput | GrantPermissionsCommandOutput | ListDataCellsFilterCommandOutput | ListLFTagsCommandOutput | ListPermissionsCommandOutput | ListResourcesCommandOutput | ListTableStorageOptimizersCommandOutput | ListTransactionsCommandOutput | PutDataLakeSettingsCommandOutput | RegisterResourceCommandOutput | RemoveLFTagsFromResourceCommandOutput | RevokePermissionsCommandOutput | SearchDatabasesByLFTagsCommandOutput | SearchTablesByLFTagsCommandOutput | StartQueryPlanningCommandOutput | StartTransactionCommandOutput | UpdateLFTagCommandOutput | UpdateResourceCommandOutput | UpdateTableObjectsCommandOutput | UpdateTableStorageOptimizerCommandOutput;
53
+ export declare type ServiceInputTypes = AddLFTagsToResourceCommandInput | BatchGrantPermissionsCommandInput | BatchRevokePermissionsCommandInput | CancelTransactionCommandInput | CommitTransactionCommandInput | CreateDataCellsFilterCommandInput | CreateLFTagCommandInput | DeleteDataCellsFilterCommandInput | DeleteLFTagCommandInput | DeleteObjectsOnCancelCommandInput | DeregisterResourceCommandInput | DescribeResourceCommandInput | DescribeTransactionCommandInput | ExtendTransactionCommandInput | GetDataLakeSettingsCommandInput | GetEffectivePermissionsForPathCommandInput | GetLFTagCommandInput | GetQueryStateCommandInput | GetQueryStatisticsCommandInput | GetResourceLFTagsCommandInput | GetTableObjectsCommandInput | GetTemporaryGluePartitionCredentialsCommandInput | GetTemporaryGlueTableCredentialsCommandInput | GetWorkUnitResultsCommandInput | GetWorkUnitsCommandInput | GrantPermissionsCommandInput | ListDataCellsFilterCommandInput | ListLFTagsCommandInput | ListPermissionsCommandInput | ListResourcesCommandInput | ListTableStorageOptimizersCommandInput | ListTransactionsCommandInput | PutDataLakeSettingsCommandInput | RegisterResourceCommandInput | RemoveLFTagsFromResourceCommandInput | RevokePermissionsCommandInput | SearchDatabasesByLFTagsCommandInput | SearchTablesByLFTagsCommandInput | StartQueryPlanningCommandInput | StartTransactionCommandInput | UpdateLFTagCommandInput | UpdateResourceCommandInput | UpdateTableObjectsCommandInput | UpdateTableStorageOptimizerCommandInput;
54
+ export declare type ServiceOutputTypes = AddLFTagsToResourceCommandOutput | BatchGrantPermissionsCommandOutput | BatchRevokePermissionsCommandOutput | CancelTransactionCommandOutput | CommitTransactionCommandOutput | CreateDataCellsFilterCommandOutput | CreateLFTagCommandOutput | DeleteDataCellsFilterCommandOutput | DeleteLFTagCommandOutput | DeleteObjectsOnCancelCommandOutput | DeregisterResourceCommandOutput | DescribeResourceCommandOutput | DescribeTransactionCommandOutput | ExtendTransactionCommandOutput | GetDataLakeSettingsCommandOutput | GetEffectivePermissionsForPathCommandOutput | GetLFTagCommandOutput | GetQueryStateCommandOutput | GetQueryStatisticsCommandOutput | GetResourceLFTagsCommandOutput | GetTableObjectsCommandOutput | GetTemporaryGluePartitionCredentialsCommandOutput | GetTemporaryGlueTableCredentialsCommandOutput | GetWorkUnitResultsCommandOutput | GetWorkUnitsCommandOutput | GrantPermissionsCommandOutput | ListDataCellsFilterCommandOutput | ListLFTagsCommandOutput | ListPermissionsCommandOutput | ListResourcesCommandOutput | ListTableStorageOptimizersCommandOutput | ListTransactionsCommandOutput | PutDataLakeSettingsCommandOutput | RegisterResourceCommandOutput | RemoveLFTagsFromResourceCommandOutput | RevokePermissionsCommandOutput | SearchDatabasesByLFTagsCommandOutput | SearchTablesByLFTagsCommandOutput | StartQueryPlanningCommandOutput | StartTransactionCommandOutput | UpdateLFTagCommandOutput | UpdateResourceCommandOutput | UpdateTableObjectsCommandOutput | UpdateTableStorageOptimizerCommandOutput;
53
55
  export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
54
56
 
55
57
  requestHandler?: __HttpHandler;
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient";
4
+ import { GetTemporaryGluePartitionCredentialsRequest, GetTemporaryGluePartitionCredentialsResponse } from "../models/models_0";
5
+ export interface GetTemporaryGluePartitionCredentialsCommandInput extends GetTemporaryGluePartitionCredentialsRequest {
6
+ }
7
+ export interface GetTemporaryGluePartitionCredentialsCommandOutput extends GetTemporaryGluePartitionCredentialsResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class GetTemporaryGluePartitionCredentialsCommand extends $Command<GetTemporaryGluePartitionCredentialsCommandInput, GetTemporaryGluePartitionCredentialsCommandOutput, LakeFormationClientResolvedConfig> {
11
+ readonly input: GetTemporaryGluePartitionCredentialsCommandInput;
12
+ constructor(input: GetTemporaryGluePartitionCredentialsCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LakeFormationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetTemporaryGluePartitionCredentialsCommandInput, GetTemporaryGluePartitionCredentialsCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient";
4
+ import { GetTemporaryGlueTableCredentialsRequest, GetTemporaryGlueTableCredentialsResponse } from "../models/models_0";
5
+ export interface GetTemporaryGlueTableCredentialsCommandInput extends GetTemporaryGlueTableCredentialsRequest {
6
+ }
7
+ export interface GetTemporaryGlueTableCredentialsCommandOutput extends GetTemporaryGlueTableCredentialsResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class GetTemporaryGlueTableCredentialsCommand extends $Command<GetTemporaryGlueTableCredentialsCommandInput, GetTemporaryGlueTableCredentialsCommandOutput, LakeFormationClientResolvedConfig> {
11
+ readonly input: GetTemporaryGlueTableCredentialsCommandInput;
12
+ constructor(input: GetTemporaryGlueTableCredentialsCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LakeFormationClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetTemporaryGlueTableCredentialsCommandInput, GetTemporaryGlueTableCredentialsCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -19,6 +19,8 @@ export * from "./GetQueryStateCommand";
19
19
  export * from "./GetQueryStatisticsCommand";
20
20
  export * from "./GetResourceLFTagsCommand";
21
21
  export * from "./GetTableObjectsCommand";
22
+ export * from "./GetTemporaryGluePartitionCredentialsCommand";
23
+ export * from "./GetTemporaryGlueTableCredentialsCommand";
22
24
  export * from "./GetWorkUnitResultsCommand";
23
25
  export * from "./GetWorkUnitsCommand";
24
26
  export * from "./GrantPermissionsCommand";
@@ -311,6 +311,15 @@ export declare namespace AlreadyExistsException {
311
311
 
312
312
  const filterSensitiveLog: (obj: AlreadyExistsException) => any;
313
313
  }
314
+
315
+ export interface AuditContext {
316
+
317
+ AdditionalAuditContext?: string;
318
+ }
319
+ export declare namespace AuditContext {
320
+
321
+ const filterSensitiveLog: (obj: AuditContext) => any;
322
+ }
314
323
  export declare enum Permission {
315
324
  ALL = "ALL",
316
325
  ALTER = "ALTER",
@@ -742,6 +751,12 @@ export interface DataLakeSettings {
742
751
  CreateTableDefaultPermissions?: PrincipalPermissions[];
743
752
 
744
753
  TrustedResourceOwners?: string[];
754
+
755
+ AllowExternalDataFiltering?: boolean;
756
+
757
+ ExternalDataFilteringAllowList?: DataLakePrincipal[];
758
+
759
+ AuthorizedSessionTagValueList?: string[];
745
760
  }
746
761
  export declare namespace DataLakeSettings {
747
762
 
@@ -1039,6 +1054,92 @@ export declare namespace GetTableObjectsResponse {
1039
1054
 
1040
1055
  const filterSensitiveLog: (obj: GetTableObjectsResponse) => any;
1041
1056
  }
1057
+
1058
+ export interface PartitionValueList {
1059
+
1060
+ Values: string[] | undefined;
1061
+ }
1062
+ export declare namespace PartitionValueList {
1063
+
1064
+ const filterSensitiveLog: (obj: PartitionValueList) => any;
1065
+ }
1066
+ export declare enum PermissionType {
1067
+ CELL_FILTER_PERMISSION = "CELL_FILTER_PERMISSION",
1068
+ COLUMN_PERMISSION = "COLUMN_PERMISSION"
1069
+ }
1070
+ export interface GetTemporaryGluePartitionCredentialsRequest {
1071
+
1072
+ TableArn: string | undefined;
1073
+
1074
+ Partition: PartitionValueList | undefined;
1075
+
1076
+ Permissions?: (Permission | string)[];
1077
+
1078
+ DurationSeconds?: number;
1079
+
1080
+ AuditContext?: AuditContext;
1081
+
1082
+ SupportedPermissionTypes: (PermissionType | string)[] | undefined;
1083
+ }
1084
+ export declare namespace GetTemporaryGluePartitionCredentialsRequest {
1085
+
1086
+ const filterSensitiveLog: (obj: GetTemporaryGluePartitionCredentialsRequest) => any;
1087
+ }
1088
+ export interface GetTemporaryGluePartitionCredentialsResponse {
1089
+
1090
+ AccessKeyId?: string;
1091
+
1092
+ SecretAccessKey?: string;
1093
+
1094
+ SessionToken?: string;
1095
+
1096
+ Expiration?: Date;
1097
+ }
1098
+ export declare namespace GetTemporaryGluePartitionCredentialsResponse {
1099
+
1100
+ const filterSensitiveLog: (obj: GetTemporaryGluePartitionCredentialsResponse) => any;
1101
+ }
1102
+
1103
+ export interface PermissionTypeMismatchException extends __SmithyException, $MetadataBearer {
1104
+ name: "PermissionTypeMismatchException";
1105
+ $fault: "client";
1106
+
1107
+ Message?: string;
1108
+ }
1109
+ export declare namespace PermissionTypeMismatchException {
1110
+
1111
+ const filterSensitiveLog: (obj: PermissionTypeMismatchException) => any;
1112
+ }
1113
+ export interface GetTemporaryGlueTableCredentialsRequest {
1114
+
1115
+ TableArn: string | undefined;
1116
+
1117
+ Permissions?: (Permission | string)[];
1118
+
1119
+ DurationSeconds?: number;
1120
+
1121
+ AuditContext?: AuditContext;
1122
+
1123
+ SupportedPermissionTypes: (PermissionType | string)[] | undefined;
1124
+ }
1125
+ export declare namespace GetTemporaryGlueTableCredentialsRequest {
1126
+
1127
+ const filterSensitiveLog: (obj: GetTemporaryGlueTableCredentialsRequest) => any;
1128
+ }
1129
+ export interface GetTemporaryGlueTableCredentialsResponse {
1130
+
1131
+ AccessKeyId?: string;
1132
+
1133
+ SecretAccessKey?: string;
1134
+
1135
+ SessionToken?: string;
1136
+
1137
+ Expiration?: Date;
1138
+ }
1139
+ export declare namespace GetTemporaryGlueTableCredentialsResponse {
1140
+
1141
+ const filterSensitiveLog: (obj: GetTemporaryGlueTableCredentialsResponse) => any;
1142
+ }
1042
1143
  export interface GetWorkUnitResultsRequest {
1043
1144
 
1044
1145
  QueryId: string | undefined;
@@ -21,6 +21,8 @@ import { GetQueryStateCommandInput, GetQueryStateCommandOutput } from "../comman
21
21
  import { GetQueryStatisticsCommandInput, GetQueryStatisticsCommandOutput } from "../commands/GetQueryStatisticsCommand";
22
22
  import { GetResourceLFTagsCommandInput, GetResourceLFTagsCommandOutput } from "../commands/GetResourceLFTagsCommand";
23
23
  import { GetTableObjectsCommandInput, GetTableObjectsCommandOutput } from "../commands/GetTableObjectsCommand";
24
+ import { GetTemporaryGluePartitionCredentialsCommandInput, GetTemporaryGluePartitionCredentialsCommandOutput } from "../commands/GetTemporaryGluePartitionCredentialsCommand";
25
+ import { GetTemporaryGlueTableCredentialsCommandInput, GetTemporaryGlueTableCredentialsCommandOutput } from "../commands/GetTemporaryGlueTableCredentialsCommand";
24
26
  import { GetWorkUnitResultsCommandInput, GetWorkUnitResultsCommandOutput } from "../commands/GetWorkUnitResultsCommand";
25
27
  import { GetWorkUnitsCommandInput, GetWorkUnitsCommandOutput } from "../commands/GetWorkUnitsCommand";
26
28
  import { GrantPermissionsCommandInput, GrantPermissionsCommandOutput } from "../commands/GrantPermissionsCommand";
@@ -63,6 +65,8 @@ export declare const serializeAws_restJson1GetQueryStateCommand: (input: GetQuer
63
65
  export declare const serializeAws_restJson1GetQueryStatisticsCommand: (input: GetQueryStatisticsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
64
66
  export declare const serializeAws_restJson1GetResourceLFTagsCommand: (input: GetResourceLFTagsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
65
67
  export declare const serializeAws_restJson1GetTableObjectsCommand: (input: GetTableObjectsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
68
+ export declare const serializeAws_restJson1GetTemporaryGluePartitionCredentialsCommand: (input: GetTemporaryGluePartitionCredentialsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
69
+ export declare const serializeAws_restJson1GetTemporaryGlueTableCredentialsCommand: (input: GetTemporaryGlueTableCredentialsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
66
70
  export declare const serializeAws_restJson1GetWorkUnitResultsCommand: (input: GetWorkUnitResultsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
67
71
  export declare const serializeAws_restJson1GetWorkUnitsCommand: (input: GetWorkUnitsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
68
72
  export declare const serializeAws_restJson1GrantPermissionsCommand: (input: GrantPermissionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -105,6 +109,8 @@ export declare const deserializeAws_restJson1GetQueryStateCommand: (output: __Ht
105
109
  export declare const deserializeAws_restJson1GetQueryStatisticsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetQueryStatisticsCommandOutput>;
106
110
  export declare const deserializeAws_restJson1GetResourceLFTagsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetResourceLFTagsCommandOutput>;
107
111
  export declare const deserializeAws_restJson1GetTableObjectsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetTableObjectsCommandOutput>;
112
+ export declare const deserializeAws_restJson1GetTemporaryGluePartitionCredentialsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetTemporaryGluePartitionCredentialsCommandOutput>;
113
+ export declare const deserializeAws_restJson1GetTemporaryGlueTableCredentialsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetTemporaryGlueTableCredentialsCommandOutput>;
108
114
  export declare const deserializeAws_restJson1GetWorkUnitResultsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetWorkUnitResultsCommandOutput>;
109
115
  export declare const deserializeAws_restJson1GetWorkUnitsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetWorkUnitsCommandOutput>;
110
116
  export declare const deserializeAws_restJson1GrantPermissionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GrantPermissionsCommandOutput>;
package/package.json CHANGED
@@ -1,18 +1,17 @@
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.45.0",
4
+ "version": "3.46.0",
5
5
  "scripts": {
6
6
  "build": "yarn build:cjs && yarn build:es && yarn build:types",
7
7
  "build:cjs": "tsc -p tsconfig.json",
8
- "build:docs": "yarn clean:docs && typedoc ./",
8
+ "build:docs": "typedoc",
9
9
  "build:es": "tsc -p tsconfig.es.json",
10
10
  "build:types": "tsc -p tsconfig.types.json",
11
+ "build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
11
12
  "clean": "yarn clean:dist && yarn clean:docs",
12
- "clean:dist": "rimraf ./dist",
13
- "clean:docs": "rimraf ./docs",
14
- "downlevel-dts": "downlevel-dts dist-types dist-types/ts3.4",
15
- "test": "exit 0"
13
+ "clean:dist": "rimraf ./dist-*",
14
+ "clean:docs": "rimraf ./docs"
16
15
  },
17
16
  "main": "./dist-cjs/index.js",
18
17
  "types": "./dist-types/index.d.ts",
@@ -21,48 +20,42 @@
21
20
  "dependencies": {
22
21
  "@aws-crypto/sha256-browser": "2.0.0",
23
22
  "@aws-crypto/sha256-js": "2.0.0",
24
- "@aws-sdk/client-sts": "3.45.0",
25
- "@aws-sdk/config-resolver": "3.45.0",
26
- "@aws-sdk/credential-provider-node": "3.45.0",
27
- "@aws-sdk/fetch-http-handler": "3.40.0",
28
- "@aws-sdk/hash-node": "3.40.0",
29
- "@aws-sdk/invalid-dependency": "3.40.0",
30
- "@aws-sdk/middleware-content-length": "3.40.0",
31
- "@aws-sdk/middleware-host-header": "3.40.0",
32
- "@aws-sdk/middleware-logger": "3.40.0",
33
- "@aws-sdk/middleware-retry": "3.40.0",
34
- "@aws-sdk/middleware-serde": "3.40.0",
35
- "@aws-sdk/middleware-signing": "3.45.0",
36
- "@aws-sdk/middleware-stack": "3.40.0",
37
- "@aws-sdk/middleware-user-agent": "3.40.0",
38
- "@aws-sdk/node-config-provider": "3.40.0",
39
- "@aws-sdk/node-http-handler": "3.40.0",
40
- "@aws-sdk/protocol-http": "3.40.0",
41
- "@aws-sdk/smithy-client": "3.41.0",
42
- "@aws-sdk/types": "3.40.0",
43
- "@aws-sdk/url-parser": "3.40.0",
44
- "@aws-sdk/util-base64-browser": "3.37.0",
45
- "@aws-sdk/util-base64-node": "3.37.0",
46
- "@aws-sdk/util-body-length-browser": "3.37.0",
47
- "@aws-sdk/util-body-length-node": "3.37.0",
48
- "@aws-sdk/util-user-agent-browser": "3.40.0",
49
- "@aws-sdk/util-user-agent-node": "3.40.0",
50
- "@aws-sdk/util-utf8-browser": "3.37.0",
51
- "@aws-sdk/util-utf8-node": "3.37.0",
23
+ "@aws-sdk/client-sts": "3.46.0",
24
+ "@aws-sdk/config-resolver": "3.46.0",
25
+ "@aws-sdk/credential-provider-node": "3.46.0",
26
+ "@aws-sdk/fetch-http-handler": "3.46.0",
27
+ "@aws-sdk/hash-node": "3.46.0",
28
+ "@aws-sdk/invalid-dependency": "3.46.0",
29
+ "@aws-sdk/middleware-content-length": "3.46.0",
30
+ "@aws-sdk/middleware-host-header": "3.46.0",
31
+ "@aws-sdk/middleware-logger": "3.46.0",
32
+ "@aws-sdk/middleware-retry": "3.46.0",
33
+ "@aws-sdk/middleware-serde": "3.46.0",
34
+ "@aws-sdk/middleware-signing": "3.46.0",
35
+ "@aws-sdk/middleware-stack": "3.46.0",
36
+ "@aws-sdk/middleware-user-agent": "3.46.0",
37
+ "@aws-sdk/node-config-provider": "3.46.0",
38
+ "@aws-sdk/node-http-handler": "3.46.0",
39
+ "@aws-sdk/protocol-http": "3.46.0",
40
+ "@aws-sdk/smithy-client": "3.46.0",
41
+ "@aws-sdk/types": "3.46.0",
42
+ "@aws-sdk/url-parser": "3.46.0",
43
+ "@aws-sdk/util-base64-browser": "3.46.0",
44
+ "@aws-sdk/util-base64-node": "3.46.0",
45
+ "@aws-sdk/util-body-length-browser": "3.46.0",
46
+ "@aws-sdk/util-body-length-node": "3.46.0",
47
+ "@aws-sdk/util-user-agent-browser": "3.46.0",
48
+ "@aws-sdk/util-user-agent-node": "3.46.0",
49
+ "@aws-sdk/util-utf8-browser": "3.46.0",
50
+ "@aws-sdk/util-utf8-node": "3.46.0",
52
51
  "tslib": "^2.3.0"
53
52
  },
54
53
  "devDependencies": {
55
- "@aws-sdk/service-client-documentation-generator": "3.38.0",
56
- "@types/node": "^12.7.5",
57
- "downlevel-dts": "0.7.0",
58
- "jest": "^26.1.0",
59
- "rimraf": "^3.0.0",
60
- "ts-jest": "^26.4.1",
61
- "typedoc": "^0.19.2",
62
- "typescript": "~4.3.5"
54
+ "@aws-sdk/service-client-documentation-generator": "3.46.0",
55
+ "@types/node": "^12.7.5"
63
56
  },
64
57
  "engines": {
65
- "node": ">=10.0.0"
58
+ "node": ">=12.0.0"
66
59
  },
67
60
  "typesVersions": {
68
61
  "<4.0": {