@aws-sdk/client-lakeformation 3.299.0 → 3.301.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 (48) hide show
  1. package/dist-types/commands/AddLFTagsToResourceCommand.d.ts +67 -0
  2. package/dist-types/commands/AssumeDecoratedRoleWithSAMLCommand.d.ts +6 -0
  3. package/dist-types/commands/BatchGrantPermissionsCommand.d.ts +72 -0
  4. package/dist-types/commands/BatchRevokePermissionsCommand.d.ts +72 -0
  5. package/dist-types/commands/CancelTransactionCommand.d.ts +3 -0
  6. package/dist-types/commands/CommitTransactionCommand.d.ts +3 -0
  7. package/dist-types/commands/CreateDataCellsFilterCommand.d.ts +21 -0
  8. package/dist-types/commands/CreateLFTagCommand.d.ts +7 -0
  9. package/dist-types/commands/DeleteDataCellsFilterCommand.d.ts +6 -0
  10. package/dist-types/commands/DeleteLFTagCommand.d.ts +4 -0
  11. package/dist-types/commands/DeleteObjectsOnCancelCommand.d.ts +12 -0
  12. package/dist-types/commands/DeregisterResourceCommand.d.ts +3 -0
  13. package/dist-types/commands/DescribeResourceCommand.d.ts +3 -0
  14. package/dist-types/commands/DescribeTransactionCommand.d.ts +3 -0
  15. package/dist-types/commands/ExtendTransactionCommand.d.ts +3 -0
  16. package/dist-types/commands/GetDataCellsFilterCommand.d.ts +6 -0
  17. package/dist-types/commands/GetDataLakeSettingsCommand.d.ts +3 -0
  18. package/dist-types/commands/GetEffectivePermissionsForPathCommand.d.ts +6 -0
  19. package/dist-types/commands/GetLFTagCommand.d.ts +4 -0
  20. package/dist-types/commands/GetQueryStateCommand.d.ts +3 -0
  21. package/dist-types/commands/GetQueryStatisticsCommand.d.ts +3 -0
  22. package/dist-types/commands/GetResourceLFTagsCommand.d.ts +59 -0
  23. package/dist-types/commands/GetTableObjectsCommand.d.ts +10 -0
  24. package/dist-types/commands/GetTemporaryGluePartitionCredentialsCommand.d.ts +18 -0
  25. package/dist-types/commands/GetTemporaryGlueTableCredentialsCommand.d.ts +13 -0
  26. package/dist-types/commands/GetWorkUnitResultsCommand.d.ts +5 -0
  27. package/dist-types/commands/GetWorkUnitsCommand.d.ts +5 -0
  28. package/dist-types/commands/GrantPermissionsCommand.d.ts +67 -0
  29. package/dist-types/commands/ListDataCellsFilterCommand.d.ts +10 -0
  30. package/dist-types/commands/ListLFTagsCommand.d.ts +6 -0
  31. package/dist-types/commands/ListPermissionsCommand.d.ts +65 -0
  32. package/dist-types/commands/ListResourcesCommand.d.ts +13 -0
  33. package/dist-types/commands/ListTableStorageOptimizersCommand.d.ts +8 -0
  34. package/dist-types/commands/ListTransactionsCommand.d.ts +6 -0
  35. package/dist-types/commands/PutDataLakeSettingsCommand.d.ts +45 -0
  36. package/dist-types/commands/RegisterResourceCommand.d.ts +5 -0
  37. package/dist-types/commands/RemoveLFTagsFromResourceCommand.d.ts +67 -0
  38. package/dist-types/commands/RevokePermissionsCommand.d.ts +67 -0
  39. package/dist-types/commands/SearchDatabasesByLFTagsCommand.d.ts +13 -0
  40. package/dist-types/commands/SearchTablesByLFTagsCommand.d.ts +13 -0
  41. package/dist-types/commands/StartQueryPlanningCommand.d.ts +12 -0
  42. package/dist-types/commands/StartTransactionCommand.d.ts +3 -0
  43. package/dist-types/commands/UpdateDataCellsFilterCommand.d.ts +21 -0
  44. package/dist-types/commands/UpdateLFTagCommand.d.ts +10 -0
  45. package/dist-types/commands/UpdateResourceCommand.d.ts +4 -0
  46. package/dist-types/commands/UpdateTableObjectsCommand.d.ts +25 -0
  47. package/dist-types/commands/UpdateTableStorageOptimizerCommand.d.ts +10 -0
  48. package/package.json +8 -8
@@ -26,6 +26,73 @@ export interface AddLFTagsToResourceCommandOutput extends AddLFTagsToResourceRes
26
26
  * import { LakeFormationClient, AddLFTagsToResourceCommand } from "@aws-sdk/client-lakeformation"; // ES Modules import
27
27
  * // const { LakeFormationClient, AddLFTagsToResourceCommand } = require("@aws-sdk/client-lakeformation"); // CommonJS import
28
28
  * const client = new LakeFormationClient(config);
29
+ * const input = { // AddLFTagsToResourceRequest
30
+ * CatalogId: "STRING_VALUE",
31
+ * Resource: { // Resource
32
+ * Catalog: {},
33
+ * Database: { // DatabaseResource
34
+ * CatalogId: "STRING_VALUE",
35
+ * Name: "STRING_VALUE", // required
36
+ * },
37
+ * Table: { // TableResource
38
+ * CatalogId: "STRING_VALUE",
39
+ * DatabaseName: "STRING_VALUE", // required
40
+ * Name: "STRING_VALUE",
41
+ * TableWildcard: {},
42
+ * },
43
+ * TableWithColumns: { // TableWithColumnsResource
44
+ * CatalogId: "STRING_VALUE",
45
+ * DatabaseName: "STRING_VALUE", // required
46
+ * Name: "STRING_VALUE", // required
47
+ * ColumnNames: [ // ColumnNames
48
+ * "STRING_VALUE",
49
+ * ],
50
+ * ColumnWildcard: { // ColumnWildcard
51
+ * ExcludedColumnNames: [
52
+ * "STRING_VALUE",
53
+ * ],
54
+ * },
55
+ * },
56
+ * DataLocation: { // DataLocationResource
57
+ * CatalogId: "STRING_VALUE",
58
+ * ResourceArn: "STRING_VALUE", // required
59
+ * },
60
+ * DataCellsFilter: { // DataCellsFilterResource
61
+ * TableCatalogId: "STRING_VALUE",
62
+ * DatabaseName: "STRING_VALUE",
63
+ * TableName: "STRING_VALUE",
64
+ * Name: "STRING_VALUE",
65
+ * },
66
+ * LFTag: { // LFTagKeyResource
67
+ * CatalogId: "STRING_VALUE",
68
+ * TagKey: "STRING_VALUE", // required
69
+ * TagValues: [ // TagValueList // required
70
+ * "STRING_VALUE",
71
+ * ],
72
+ * },
73
+ * LFTagPolicy: { // LFTagPolicyResource
74
+ * CatalogId: "STRING_VALUE",
75
+ * ResourceType: "DATABASE" || "TABLE", // required
76
+ * Expression: [ // Expression // required
77
+ * { // LFTag
78
+ * TagKey: "STRING_VALUE", // required
79
+ * TagValues: [ // required
80
+ * "STRING_VALUE",
81
+ * ],
82
+ * },
83
+ * ],
84
+ * },
85
+ * },
86
+ * LFTags: [ // LFTagsList // required
87
+ * { // LFTagPair
88
+ * CatalogId: "STRING_VALUE",
89
+ * TagKey: "STRING_VALUE", // required
90
+ * TagValues: [ // required
91
+ * "STRING_VALUE",
92
+ * ],
93
+ * },
94
+ * ],
95
+ * };
29
96
  * const command = new AddLFTagsToResourceCommand(input);
30
97
  * const response = await client.send(command);
31
98
  * ```
@@ -31,6 +31,12 @@ export interface AssumeDecoratedRoleWithSAMLCommandOutput extends AssumeDecorate
31
31
  * import { LakeFormationClient, AssumeDecoratedRoleWithSAMLCommand } from "@aws-sdk/client-lakeformation"; // ES Modules import
32
32
  * // const { LakeFormationClient, AssumeDecoratedRoleWithSAMLCommand } = require("@aws-sdk/client-lakeformation"); // CommonJS import
33
33
  * const client = new LakeFormationClient(config);
34
+ * const input = { // AssumeDecoratedRoleWithSAMLRequest
35
+ * SAMLAssertion: "STRING_VALUE", // required
36
+ * RoleArn: "STRING_VALUE", // required
37
+ * PrincipalArn: "STRING_VALUE", // required
38
+ * DurationSeconds: Number("int"),
39
+ * };
34
40
  * const command = new AssumeDecoratedRoleWithSAMLCommand(input);
35
41
  * const response = await client.send(command);
36
42
  * ```
@@ -26,6 +26,78 @@ export interface BatchGrantPermissionsCommandOutput extends BatchGrantPermission
26
26
  * import { LakeFormationClient, BatchGrantPermissionsCommand } from "@aws-sdk/client-lakeformation"; // ES Modules import
27
27
  * // const { LakeFormationClient, BatchGrantPermissionsCommand } = require("@aws-sdk/client-lakeformation"); // CommonJS import
28
28
  * const client = new LakeFormationClient(config);
29
+ * const input = { // BatchGrantPermissionsRequest
30
+ * CatalogId: "STRING_VALUE",
31
+ * Entries: [ // BatchPermissionsRequestEntryList // required
32
+ * { // BatchPermissionsRequestEntry
33
+ * Id: "STRING_VALUE", // required
34
+ * Principal: { // DataLakePrincipal
35
+ * DataLakePrincipalIdentifier: "STRING_VALUE",
36
+ * },
37
+ * Resource: { // Resource
38
+ * Catalog: {},
39
+ * Database: { // DatabaseResource
40
+ * CatalogId: "STRING_VALUE",
41
+ * Name: "STRING_VALUE", // required
42
+ * },
43
+ * Table: { // TableResource
44
+ * CatalogId: "STRING_VALUE",
45
+ * DatabaseName: "STRING_VALUE", // required
46
+ * Name: "STRING_VALUE",
47
+ * TableWildcard: {},
48
+ * },
49
+ * TableWithColumns: { // TableWithColumnsResource
50
+ * CatalogId: "STRING_VALUE",
51
+ * DatabaseName: "STRING_VALUE", // required
52
+ * Name: "STRING_VALUE", // required
53
+ * ColumnNames: [ // ColumnNames
54
+ * "STRING_VALUE",
55
+ * ],
56
+ * ColumnWildcard: { // ColumnWildcard
57
+ * ExcludedColumnNames: [
58
+ * "STRING_VALUE",
59
+ * ],
60
+ * },
61
+ * },
62
+ * DataLocation: { // DataLocationResource
63
+ * CatalogId: "STRING_VALUE",
64
+ * ResourceArn: "STRING_VALUE", // required
65
+ * },
66
+ * DataCellsFilter: { // DataCellsFilterResource
67
+ * TableCatalogId: "STRING_VALUE",
68
+ * DatabaseName: "STRING_VALUE",
69
+ * TableName: "STRING_VALUE",
70
+ * Name: "STRING_VALUE",
71
+ * },
72
+ * LFTag: { // LFTagKeyResource
73
+ * CatalogId: "STRING_VALUE",
74
+ * TagKey: "STRING_VALUE", // required
75
+ * TagValues: [ // TagValueList // required
76
+ * "STRING_VALUE",
77
+ * ],
78
+ * },
79
+ * LFTagPolicy: { // LFTagPolicyResource
80
+ * CatalogId: "STRING_VALUE",
81
+ * ResourceType: "DATABASE" || "TABLE", // required
82
+ * Expression: [ // Expression // required
83
+ * { // LFTag
84
+ * TagKey: "STRING_VALUE", // required
85
+ * TagValues: [ // required
86
+ * "STRING_VALUE",
87
+ * ],
88
+ * },
89
+ * ],
90
+ * },
91
+ * },
92
+ * Permissions: [ // PermissionList
93
+ * "ALL" || "SELECT" || "ALTER" || "DROP" || "DELETE" || "INSERT" || "DESCRIBE" || "CREATE_DATABASE" || "CREATE_TABLE" || "DATA_LOCATION_ACCESS" || "CREATE_TAG" || "ASSOCIATE",
94
+ * ],
95
+ * PermissionsWithGrantOption: [
96
+ * "ALL" || "SELECT" || "ALTER" || "DROP" || "DELETE" || "INSERT" || "DESCRIBE" || "CREATE_DATABASE" || "CREATE_TABLE" || "DATA_LOCATION_ACCESS" || "CREATE_TAG" || "ASSOCIATE",
97
+ * ],
98
+ * },
99
+ * ],
100
+ * };
29
101
  * const command = new BatchGrantPermissionsCommand(input);
30
102
  * const response = await client.send(command);
31
103
  * ```
@@ -26,6 +26,78 @@ export interface BatchRevokePermissionsCommandOutput extends BatchRevokePermissi
26
26
  * import { LakeFormationClient, BatchRevokePermissionsCommand } from "@aws-sdk/client-lakeformation"; // ES Modules import
27
27
  * // const { LakeFormationClient, BatchRevokePermissionsCommand } = require("@aws-sdk/client-lakeformation"); // CommonJS import
28
28
  * const client = new LakeFormationClient(config);
29
+ * const input = { // BatchRevokePermissionsRequest
30
+ * CatalogId: "STRING_VALUE",
31
+ * Entries: [ // BatchPermissionsRequestEntryList // required
32
+ * { // BatchPermissionsRequestEntry
33
+ * Id: "STRING_VALUE", // required
34
+ * Principal: { // DataLakePrincipal
35
+ * DataLakePrincipalIdentifier: "STRING_VALUE",
36
+ * },
37
+ * Resource: { // Resource
38
+ * Catalog: {},
39
+ * Database: { // DatabaseResource
40
+ * CatalogId: "STRING_VALUE",
41
+ * Name: "STRING_VALUE", // required
42
+ * },
43
+ * Table: { // TableResource
44
+ * CatalogId: "STRING_VALUE",
45
+ * DatabaseName: "STRING_VALUE", // required
46
+ * Name: "STRING_VALUE",
47
+ * TableWildcard: {},
48
+ * },
49
+ * TableWithColumns: { // TableWithColumnsResource
50
+ * CatalogId: "STRING_VALUE",
51
+ * DatabaseName: "STRING_VALUE", // required
52
+ * Name: "STRING_VALUE", // required
53
+ * ColumnNames: [ // ColumnNames
54
+ * "STRING_VALUE",
55
+ * ],
56
+ * ColumnWildcard: { // ColumnWildcard
57
+ * ExcludedColumnNames: [
58
+ * "STRING_VALUE",
59
+ * ],
60
+ * },
61
+ * },
62
+ * DataLocation: { // DataLocationResource
63
+ * CatalogId: "STRING_VALUE",
64
+ * ResourceArn: "STRING_VALUE", // required
65
+ * },
66
+ * DataCellsFilter: { // DataCellsFilterResource
67
+ * TableCatalogId: "STRING_VALUE",
68
+ * DatabaseName: "STRING_VALUE",
69
+ * TableName: "STRING_VALUE",
70
+ * Name: "STRING_VALUE",
71
+ * },
72
+ * LFTag: { // LFTagKeyResource
73
+ * CatalogId: "STRING_VALUE",
74
+ * TagKey: "STRING_VALUE", // required
75
+ * TagValues: [ // TagValueList // required
76
+ * "STRING_VALUE",
77
+ * ],
78
+ * },
79
+ * LFTagPolicy: { // LFTagPolicyResource
80
+ * CatalogId: "STRING_VALUE",
81
+ * ResourceType: "DATABASE" || "TABLE", // required
82
+ * Expression: [ // Expression // required
83
+ * { // LFTag
84
+ * TagKey: "STRING_VALUE", // required
85
+ * TagValues: [ // required
86
+ * "STRING_VALUE",
87
+ * ],
88
+ * },
89
+ * ],
90
+ * },
91
+ * },
92
+ * Permissions: [ // PermissionList
93
+ * "ALL" || "SELECT" || "ALTER" || "DROP" || "DELETE" || "INSERT" || "DESCRIBE" || "CREATE_DATABASE" || "CREATE_TABLE" || "DATA_LOCATION_ACCESS" || "CREATE_TAG" || "ASSOCIATE",
94
+ * ],
95
+ * PermissionsWithGrantOption: [
96
+ * "ALL" || "SELECT" || "ALTER" || "DROP" || "DELETE" || "INSERT" || "DESCRIBE" || "CREATE_DATABASE" || "CREATE_TABLE" || "DATA_LOCATION_ACCESS" || "CREATE_TAG" || "ASSOCIATE",
97
+ * ],
98
+ * },
99
+ * ],
100
+ * };
29
101
  * const command = new BatchRevokePermissionsCommand(input);
30
102
  * const response = await client.send(command);
31
103
  * ```
@@ -26,6 +26,9 @@ export interface CancelTransactionCommandOutput extends CancelTransactionRespons
26
26
  * import { LakeFormationClient, CancelTransactionCommand } from "@aws-sdk/client-lakeformation"; // ES Modules import
27
27
  * // const { LakeFormationClient, CancelTransactionCommand } = require("@aws-sdk/client-lakeformation"); // CommonJS import
28
28
  * const client = new LakeFormationClient(config);
29
+ * const input = { // CancelTransactionRequest
30
+ * TransactionId: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new CancelTransactionCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,9 @@ export interface CommitTransactionCommandOutput extends CommitTransactionRespons
26
26
  * import { LakeFormationClient, CommitTransactionCommand } from "@aws-sdk/client-lakeformation"; // ES Modules import
27
27
  * // const { LakeFormationClient, CommitTransactionCommand } = require("@aws-sdk/client-lakeformation"); // CommonJS import
28
28
  * const client = new LakeFormationClient(config);
29
+ * const input = { // CommitTransactionRequest
30
+ * TransactionId: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new CommitTransactionCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,27 @@ export interface CreateDataCellsFilterCommandOutput extends CreateDataCellsFilte
26
26
  * import { LakeFormationClient, CreateDataCellsFilterCommand } from "@aws-sdk/client-lakeformation"; // ES Modules import
27
27
  * // const { LakeFormationClient, CreateDataCellsFilterCommand } = require("@aws-sdk/client-lakeformation"); // CommonJS import
28
28
  * const client = new LakeFormationClient(config);
29
+ * const input = { // CreateDataCellsFilterRequest
30
+ * TableData: { // DataCellsFilter
31
+ * TableCatalogId: "STRING_VALUE", // required
32
+ * DatabaseName: "STRING_VALUE", // required
33
+ * TableName: "STRING_VALUE", // required
34
+ * Name: "STRING_VALUE", // required
35
+ * RowFilter: { // RowFilter
36
+ * FilterExpression: "STRING_VALUE",
37
+ * AllRowsWildcard: {},
38
+ * },
39
+ * ColumnNames: [ // ColumnNames
40
+ * "STRING_VALUE",
41
+ * ],
42
+ * ColumnWildcard: { // ColumnWildcard
43
+ * ExcludedColumnNames: [
44
+ * "STRING_VALUE",
45
+ * ],
46
+ * },
47
+ * VersionId: "STRING_VALUE",
48
+ * },
49
+ * };
29
50
  * const command = new CreateDataCellsFilterCommand(input);
30
51
  * const response = await client.send(command);
31
52
  * ```
@@ -26,6 +26,13 @@ export interface CreateLFTagCommandOutput extends CreateLFTagResponse, __Metadat
26
26
  * import { LakeFormationClient, CreateLFTagCommand } from "@aws-sdk/client-lakeformation"; // ES Modules import
27
27
  * // const { LakeFormationClient, CreateLFTagCommand } = require("@aws-sdk/client-lakeformation"); // CommonJS import
28
28
  * const client = new LakeFormationClient(config);
29
+ * const input = { // CreateLFTagRequest
30
+ * CatalogId: "STRING_VALUE",
31
+ * TagKey: "STRING_VALUE", // required
32
+ * TagValues: [ // TagValueList // required
33
+ * "STRING_VALUE",
34
+ * ],
35
+ * };
29
36
  * const command = new CreateLFTagCommand(input);
30
37
  * const response = await client.send(command);
31
38
  * ```
@@ -26,6 +26,12 @@ export interface DeleteDataCellsFilterCommandOutput extends DeleteDataCellsFilte
26
26
  * import { LakeFormationClient, DeleteDataCellsFilterCommand } from "@aws-sdk/client-lakeformation"; // ES Modules import
27
27
  * // const { LakeFormationClient, DeleteDataCellsFilterCommand } = require("@aws-sdk/client-lakeformation"); // CommonJS import
28
28
  * const client = new LakeFormationClient(config);
29
+ * const input = { // DeleteDataCellsFilterRequest
30
+ * TableCatalogId: "STRING_VALUE",
31
+ * DatabaseName: "STRING_VALUE",
32
+ * TableName: "STRING_VALUE",
33
+ * Name: "STRING_VALUE",
34
+ * };
29
35
  * const command = new DeleteDataCellsFilterCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
@@ -26,6 +26,10 @@ export interface DeleteLFTagCommandOutput extends DeleteLFTagResponse, __Metadat
26
26
  * import { LakeFormationClient, DeleteLFTagCommand } from "@aws-sdk/client-lakeformation"; // ES Modules import
27
27
  * // const { LakeFormationClient, DeleteLFTagCommand } = require("@aws-sdk/client-lakeformation"); // CommonJS import
28
28
  * const client = new LakeFormationClient(config);
29
+ * const input = { // DeleteLFTagRequest
30
+ * CatalogId: "STRING_VALUE",
31
+ * TagKey: "STRING_VALUE", // required
32
+ * };
29
33
  * const command = new DeleteLFTagCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -33,6 +33,18 @@ export interface DeleteObjectsOnCancelCommandOutput extends DeleteObjectsOnCance
33
33
  * import { LakeFormationClient, DeleteObjectsOnCancelCommand } from "@aws-sdk/client-lakeformation"; // ES Modules import
34
34
  * // const { LakeFormationClient, DeleteObjectsOnCancelCommand } = require("@aws-sdk/client-lakeformation"); // CommonJS import
35
35
  * const client = new LakeFormationClient(config);
36
+ * const input = { // DeleteObjectsOnCancelRequest
37
+ * CatalogId: "STRING_VALUE",
38
+ * DatabaseName: "STRING_VALUE", // required
39
+ * TableName: "STRING_VALUE", // required
40
+ * TransactionId: "STRING_VALUE", // required
41
+ * Objects: [ // VirtualObjectList // required
42
+ * { // VirtualObject
43
+ * Uri: "STRING_VALUE", // required
44
+ * ETag: "STRING_VALUE",
45
+ * },
46
+ * ],
47
+ * };
36
48
  * const command = new DeleteObjectsOnCancelCommand(input);
37
49
  * const response = await client.send(command);
38
50
  * ```
@@ -27,6 +27,9 @@ export interface DeregisterResourceCommandOutput extends DeregisterResourceRespo
27
27
  * import { LakeFormationClient, DeregisterResourceCommand } from "@aws-sdk/client-lakeformation"; // ES Modules import
28
28
  * // const { LakeFormationClient, DeregisterResourceCommand } = require("@aws-sdk/client-lakeformation"); // CommonJS import
29
29
  * const client = new LakeFormationClient(config);
30
+ * const input = { // DeregisterResourceRequest
31
+ * ResourceArn: "STRING_VALUE", // required
32
+ * };
30
33
  * const command = new DeregisterResourceCommand(input);
31
34
  * const response = await client.send(command);
32
35
  * ```
@@ -26,6 +26,9 @@ export interface DescribeResourceCommandOutput extends DescribeResourceResponse,
26
26
  * import { LakeFormationClient, DescribeResourceCommand } from "@aws-sdk/client-lakeformation"; // ES Modules import
27
27
  * // const { LakeFormationClient, DescribeResourceCommand } = require("@aws-sdk/client-lakeformation"); // CommonJS import
28
28
  * const client = new LakeFormationClient(config);
29
+ * const input = { // DescribeResourceRequest
30
+ * ResourceArn: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DescribeResourceCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,9 @@ export interface DescribeTransactionCommandOutput extends DescribeTransactionRes
26
26
  * import { LakeFormationClient, DescribeTransactionCommand } from "@aws-sdk/client-lakeformation"; // ES Modules import
27
27
  * // const { LakeFormationClient, DescribeTransactionCommand } = require("@aws-sdk/client-lakeformation"); // CommonJS import
28
28
  * const client = new LakeFormationClient(config);
29
+ * const input = { // DescribeTransactionRequest
30
+ * TransactionId: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DescribeTransactionCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -27,6 +27,9 @@ export interface ExtendTransactionCommandOutput extends ExtendTransactionRespons
27
27
  * import { LakeFormationClient, ExtendTransactionCommand } from "@aws-sdk/client-lakeformation"; // ES Modules import
28
28
  * // const { LakeFormationClient, ExtendTransactionCommand } = require("@aws-sdk/client-lakeformation"); // CommonJS import
29
29
  * const client = new LakeFormationClient(config);
30
+ * const input = { // ExtendTransactionRequest
31
+ * TransactionId: "STRING_VALUE",
32
+ * };
30
33
  * const command = new ExtendTransactionCommand(input);
31
34
  * const response = await client.send(command);
32
35
  * ```
@@ -26,6 +26,12 @@ export interface GetDataCellsFilterCommandOutput extends GetDataCellsFilterRespo
26
26
  * import { LakeFormationClient, GetDataCellsFilterCommand } from "@aws-sdk/client-lakeformation"; // ES Modules import
27
27
  * // const { LakeFormationClient, GetDataCellsFilterCommand } = require("@aws-sdk/client-lakeformation"); // CommonJS import
28
28
  * const client = new LakeFormationClient(config);
29
+ * const input = { // GetDataCellsFilterRequest
30
+ * TableCatalogId: "STRING_VALUE", // required
31
+ * DatabaseName: "STRING_VALUE", // required
32
+ * TableName: "STRING_VALUE", // required
33
+ * Name: "STRING_VALUE", // required
34
+ * };
29
35
  * const command = new GetDataCellsFilterCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
@@ -26,6 +26,9 @@ export interface GetDataLakeSettingsCommandOutput extends GetDataLakeSettingsRes
26
26
  * import { LakeFormationClient, GetDataLakeSettingsCommand } from "@aws-sdk/client-lakeformation"; // ES Modules import
27
27
  * // const { LakeFormationClient, GetDataLakeSettingsCommand } = require("@aws-sdk/client-lakeformation"); // CommonJS import
28
28
  * const client = new LakeFormationClient(config);
29
+ * const input = { // GetDataLakeSettingsRequest
30
+ * CatalogId: "STRING_VALUE",
31
+ * };
29
32
  * const command = new GetDataLakeSettingsCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -27,6 +27,12 @@ export interface GetEffectivePermissionsForPathCommandOutput extends GetEffectiv
27
27
  * import { LakeFormationClient, GetEffectivePermissionsForPathCommand } from "@aws-sdk/client-lakeformation"; // ES Modules import
28
28
  * // const { LakeFormationClient, GetEffectivePermissionsForPathCommand } = require("@aws-sdk/client-lakeformation"); // CommonJS import
29
29
  * const client = new LakeFormationClient(config);
30
+ * const input = { // GetEffectivePermissionsForPathRequest
31
+ * CatalogId: "STRING_VALUE",
32
+ * ResourceArn: "STRING_VALUE", // required
33
+ * NextToken: "STRING_VALUE",
34
+ * MaxResults: Number("int"),
35
+ * };
30
36
  * const command = new GetEffectivePermissionsForPathCommand(input);
31
37
  * const response = await client.send(command);
32
38
  * ```
@@ -26,6 +26,10 @@ export interface GetLFTagCommandOutput extends GetLFTagResponse, __MetadataBeare
26
26
  * import { LakeFormationClient, GetLFTagCommand } from "@aws-sdk/client-lakeformation"; // ES Modules import
27
27
  * // const { LakeFormationClient, GetLFTagCommand } = require("@aws-sdk/client-lakeformation"); // CommonJS import
28
28
  * const client = new LakeFormationClient(config);
29
+ * const input = { // GetLFTagRequest
30
+ * CatalogId: "STRING_VALUE",
31
+ * TagKey: "STRING_VALUE", // required
32
+ * };
29
33
  * const command = new GetLFTagCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,9 @@ export interface GetQueryStateCommandOutput extends GetQueryStateResponse, __Met
26
26
  * import { LakeFormationClient, GetQueryStateCommand } from "@aws-sdk/client-lakeformation"; // ES Modules import
27
27
  * // const { LakeFormationClient, GetQueryStateCommand } = require("@aws-sdk/client-lakeformation"); // CommonJS import
28
28
  * const client = new LakeFormationClient(config);
29
+ * const input = { // GetQueryStateRequest
30
+ * QueryId: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new GetQueryStateCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,9 @@ export interface GetQueryStatisticsCommandOutput extends GetQueryStatisticsRespo
26
26
  * import { LakeFormationClient, GetQueryStatisticsCommand } from "@aws-sdk/client-lakeformation"; // ES Modules import
27
27
  * // const { LakeFormationClient, GetQueryStatisticsCommand } = require("@aws-sdk/client-lakeformation"); // CommonJS import
28
28
  * const client = new LakeFormationClient(config);
29
+ * const input = { // GetQueryStatisticsRequest
30
+ * QueryId: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new GetQueryStatisticsCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,65 @@ export interface GetResourceLFTagsCommandOutput extends GetResourceLFTagsRespons
26
26
  * import { LakeFormationClient, GetResourceLFTagsCommand } from "@aws-sdk/client-lakeformation"; // ES Modules import
27
27
  * // const { LakeFormationClient, GetResourceLFTagsCommand } = require("@aws-sdk/client-lakeformation"); // CommonJS import
28
28
  * const client = new LakeFormationClient(config);
29
+ * const input = { // GetResourceLFTagsRequest
30
+ * CatalogId: "STRING_VALUE",
31
+ * Resource: { // Resource
32
+ * Catalog: {},
33
+ * Database: { // DatabaseResource
34
+ * CatalogId: "STRING_VALUE",
35
+ * Name: "STRING_VALUE", // required
36
+ * },
37
+ * Table: { // TableResource
38
+ * CatalogId: "STRING_VALUE",
39
+ * DatabaseName: "STRING_VALUE", // required
40
+ * Name: "STRING_VALUE",
41
+ * TableWildcard: {},
42
+ * },
43
+ * TableWithColumns: { // TableWithColumnsResource
44
+ * CatalogId: "STRING_VALUE",
45
+ * DatabaseName: "STRING_VALUE", // required
46
+ * Name: "STRING_VALUE", // required
47
+ * ColumnNames: [ // ColumnNames
48
+ * "STRING_VALUE",
49
+ * ],
50
+ * ColumnWildcard: { // ColumnWildcard
51
+ * ExcludedColumnNames: [
52
+ * "STRING_VALUE",
53
+ * ],
54
+ * },
55
+ * },
56
+ * DataLocation: { // DataLocationResource
57
+ * CatalogId: "STRING_VALUE",
58
+ * ResourceArn: "STRING_VALUE", // required
59
+ * },
60
+ * DataCellsFilter: { // DataCellsFilterResource
61
+ * TableCatalogId: "STRING_VALUE",
62
+ * DatabaseName: "STRING_VALUE",
63
+ * TableName: "STRING_VALUE",
64
+ * Name: "STRING_VALUE",
65
+ * },
66
+ * LFTag: { // LFTagKeyResource
67
+ * CatalogId: "STRING_VALUE",
68
+ * TagKey: "STRING_VALUE", // required
69
+ * TagValues: [ // TagValueList // required
70
+ * "STRING_VALUE",
71
+ * ],
72
+ * },
73
+ * LFTagPolicy: { // LFTagPolicyResource
74
+ * CatalogId: "STRING_VALUE",
75
+ * ResourceType: "DATABASE" || "TABLE", // required
76
+ * Expression: [ // Expression // required
77
+ * { // LFTag
78
+ * TagKey: "STRING_VALUE", // required
79
+ * TagValues: [ // required
80
+ * "STRING_VALUE",
81
+ * ],
82
+ * },
83
+ * ],
84
+ * },
85
+ * },
86
+ * ShowAssignedLFTags: true || false,
87
+ * };
29
88
  * const command = new GetResourceLFTagsCommand(input);
30
89
  * const response = await client.send(command);
31
90
  * ```
@@ -26,6 +26,16 @@ export interface GetTableObjectsCommandOutput extends GetTableObjectsResponse, _
26
26
  * import { LakeFormationClient, GetTableObjectsCommand } from "@aws-sdk/client-lakeformation"; // ES Modules import
27
27
  * // const { LakeFormationClient, GetTableObjectsCommand } = require("@aws-sdk/client-lakeformation"); // CommonJS import
28
28
  * const client = new LakeFormationClient(config);
29
+ * const input = { // GetTableObjectsRequest
30
+ * CatalogId: "STRING_VALUE",
31
+ * DatabaseName: "STRING_VALUE", // required
32
+ * TableName: "STRING_VALUE", // required
33
+ * TransactionId: "STRING_VALUE",
34
+ * QueryAsOfTime: new Date("TIMESTAMP"),
35
+ * PartitionPredicate: "STRING_VALUE",
36
+ * MaxResults: Number("int"),
37
+ * NextToken: "STRING_VALUE",
38
+ * };
29
39
  * const command = new GetTableObjectsCommand(input);
30
40
  * const response = await client.send(command);
31
41
  * ```
@@ -26,6 +26,24 @@ export interface GetTemporaryGluePartitionCredentialsCommandOutput extends GetTe
26
26
  * import { LakeFormationClient, GetTemporaryGluePartitionCredentialsCommand } from "@aws-sdk/client-lakeformation"; // ES Modules import
27
27
  * // const { LakeFormationClient, GetTemporaryGluePartitionCredentialsCommand } = require("@aws-sdk/client-lakeformation"); // CommonJS import
28
28
  * const client = new LakeFormationClient(config);
29
+ * const input = { // GetTemporaryGluePartitionCredentialsRequest
30
+ * TableArn: "STRING_VALUE", // required
31
+ * Partition: { // PartitionValueList
32
+ * Values: [ // ValueStringList // required
33
+ * "STRING_VALUE",
34
+ * ],
35
+ * },
36
+ * Permissions: [ // PermissionList
37
+ * "ALL" || "SELECT" || "ALTER" || "DROP" || "DELETE" || "INSERT" || "DESCRIBE" || "CREATE_DATABASE" || "CREATE_TABLE" || "DATA_LOCATION_ACCESS" || "CREATE_TAG" || "ASSOCIATE",
38
+ * ],
39
+ * DurationSeconds: Number("int"),
40
+ * AuditContext: { // AuditContext
41
+ * AdditionalAuditContext: "STRING_VALUE",
42
+ * },
43
+ * SupportedPermissionTypes: [ // PermissionTypeList // required
44
+ * "COLUMN_PERMISSION" || "CELL_FILTER_PERMISSION",
45
+ * ],
46
+ * };
29
47
  * const command = new GetTemporaryGluePartitionCredentialsCommand(input);
30
48
  * const response = await client.send(command);
31
49
  * ```
@@ -26,6 +26,19 @@ export interface GetTemporaryGlueTableCredentialsCommandOutput extends GetTempor
26
26
  * import { LakeFormationClient, GetTemporaryGlueTableCredentialsCommand } from "@aws-sdk/client-lakeformation"; // ES Modules import
27
27
  * // const { LakeFormationClient, GetTemporaryGlueTableCredentialsCommand } = require("@aws-sdk/client-lakeformation"); // CommonJS import
28
28
  * const client = new LakeFormationClient(config);
29
+ * const input = { // GetTemporaryGlueTableCredentialsRequest
30
+ * TableArn: "STRING_VALUE", // required
31
+ * Permissions: [ // PermissionList
32
+ * "ALL" || "SELECT" || "ALTER" || "DROP" || "DELETE" || "INSERT" || "DESCRIBE" || "CREATE_DATABASE" || "CREATE_TABLE" || "DATA_LOCATION_ACCESS" || "CREATE_TAG" || "ASSOCIATE",
33
+ * ],
34
+ * DurationSeconds: Number("int"),
35
+ * AuditContext: { // AuditContext
36
+ * AdditionalAuditContext: "STRING_VALUE",
37
+ * },
38
+ * SupportedPermissionTypes: [ // PermissionTypeList // required
39
+ * "COLUMN_PERMISSION" || "CELL_FILTER_PERMISSION",
40
+ * ],
41
+ * };
29
42
  * const command = new GetTemporaryGlueTableCredentialsCommand(input);
30
43
  * const response = await client.send(command);
31
44
  * ```
@@ -26,6 +26,11 @@ export interface GetWorkUnitResultsCommandOutput extends __WithSdkStreamMixin<Ge
26
26
  * import { LakeFormationClient, GetWorkUnitResultsCommand } from "@aws-sdk/client-lakeformation"; // ES Modules import
27
27
  * // const { LakeFormationClient, GetWorkUnitResultsCommand } = require("@aws-sdk/client-lakeformation"); // CommonJS import
28
28
  * const client = new LakeFormationClient(config);
29
+ * const input = { // GetWorkUnitResultsRequest
30
+ * QueryId: "STRING_VALUE", // required
31
+ * WorkUnitId: Number("long"), // required
32
+ * WorkUnitToken: "STRING_VALUE", // required
33
+ * };
29
34
  * const command = new GetWorkUnitResultsCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -26,6 +26,11 @@ export interface GetWorkUnitsCommandOutput extends GetWorkUnitsResponse, __Metad
26
26
  * import { LakeFormationClient, GetWorkUnitsCommand } from "@aws-sdk/client-lakeformation"; // ES Modules import
27
27
  * // const { LakeFormationClient, GetWorkUnitsCommand } = require("@aws-sdk/client-lakeformation"); // CommonJS import
28
28
  * const client = new LakeFormationClient(config);
29
+ * const input = { // GetWorkUnitsRequest
30
+ * NextToken: "STRING_VALUE",
31
+ * PageSize: Number("int"),
32
+ * QueryId: "STRING_VALUE", // required
33
+ * };
29
34
  * const command = new GetWorkUnitsCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```