@aws-sdk/client-lakeformation 3.289.0 → 3.292.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 (49) hide show
  1. package/dist-types/commands/AddLFTagsToResourceCommand.d.ts +19 -0
  2. package/dist-types/commands/AssumeDecoratedRoleWithSAMLCommand.d.ts +16 -0
  3. package/dist-types/commands/BatchGrantPermissionsCommand.d.ts +7 -0
  4. package/dist-types/commands/BatchRevokePermissionsCommand.d.ts +7 -0
  5. package/dist-types/commands/CancelTransactionCommand.d.ts +22 -0
  6. package/dist-types/commands/CommitTransactionCommand.d.ts +19 -0
  7. package/dist-types/commands/CreateDataCellsFilterCommand.d.ts +22 -0
  8. package/dist-types/commands/CreateLFTagCommand.d.ts +19 -0
  9. package/dist-types/commands/DeleteDataCellsFilterCommand.d.ts +16 -0
  10. package/dist-types/commands/DeleteLFTagCommand.d.ts +16 -0
  11. package/dist-types/commands/DeleteObjectsOnCancelCommand.d.ts +25 -0
  12. package/dist-types/commands/DeregisterResourceCommand.d.ts +13 -0
  13. package/dist-types/commands/DescribeResourceCommand.d.ts +13 -0
  14. package/dist-types/commands/DescribeTransactionCommand.d.ts +13 -0
  15. package/dist-types/commands/ExtendTransactionCommand.d.ts +22 -0
  16. package/dist-types/commands/GetDataCellsFilterCommand.d.ts +16 -0
  17. package/dist-types/commands/GetDataLakeSettingsCommand.d.ts +10 -0
  18. package/dist-types/commands/GetEffectivePermissionsForPathCommand.d.ts +13 -0
  19. package/dist-types/commands/GetLFTagCommand.d.ts +16 -0
  20. package/dist-types/commands/GetQueryStateCommand.d.ts +10 -0
  21. package/dist-types/commands/GetQueryStatisticsCommand.d.ts +19 -0
  22. package/dist-types/commands/GetResourceLFTagsCommand.d.ts +19 -0
  23. package/dist-types/commands/GetTableObjectsCommand.d.ts +22 -0
  24. package/dist-types/commands/GetTemporaryGluePartitionCredentialsCommand.d.ts +19 -0
  25. package/dist-types/commands/GetTemporaryGlueTableCredentialsCommand.d.ts +19 -0
  26. package/dist-types/commands/GetWorkUnitResultsCommand.d.ts +16 -0
  27. package/dist-types/commands/GetWorkUnitsCommand.d.ts +16 -0
  28. package/dist-types/commands/GrantPermissionsCommand.d.ts +10 -0
  29. package/dist-types/commands/ListDataCellsFilterCommand.d.ts +13 -0
  30. package/dist-types/commands/ListLFTagsCommand.d.ts +16 -0
  31. package/dist-types/commands/ListPermissionsCommand.d.ts +10 -0
  32. package/dist-types/commands/ListResourcesCommand.d.ts +10 -0
  33. package/dist-types/commands/ListTableStorageOptimizersCommand.d.ts +13 -0
  34. package/dist-types/commands/ListTransactionsCommand.d.ts +10 -0
  35. package/dist-types/commands/PutDataLakeSettingsCommand.d.ts +7 -0
  36. package/dist-types/commands/RegisterResourceCommand.d.ts +22 -0
  37. package/dist-types/commands/RemoveLFTagsFromResourceCommand.d.ts +22 -0
  38. package/dist-types/commands/RevokePermissionsCommand.d.ts +10 -0
  39. package/dist-types/commands/SearchDatabasesByLFTagsCommand.d.ts +19 -0
  40. package/dist-types/commands/SearchTablesByLFTagsCommand.d.ts +19 -0
  41. package/dist-types/commands/StartQueryPlanningCommand.d.ts +13 -0
  42. package/dist-types/commands/StartTransactionCommand.d.ts +7 -0
  43. package/dist-types/commands/UpdateDataCellsFilterCommand.d.ts +19 -0
  44. package/dist-types/commands/UpdateLFTagCommand.d.ts +19 -0
  45. package/dist-types/commands/UpdateResourceCommand.d.ts +13 -0
  46. package/dist-types/commands/UpdateTableObjectsCommand.d.ts +28 -0
  47. package/dist-types/commands/UpdateTableStorageOptimizerCommand.d.ts +13 -0
  48. package/dist-types/models/models_0.d.ts +4 -1
  49. package/package.json +37 -42
@@ -29,6 +29,22 @@ export interface GetWorkUnitsCommandOutput extends GetWorkUnitsResponse, __Metad
29
29
  * @see {@link GetWorkUnitsCommandOutput} for command's `response` shape.
30
30
  * @see {@link LakeFormationClientResolvedConfig | config} for LakeFormationClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>Access to a resource was denied.</p>
34
+ *
35
+ * @throws {@link ExpiredException} (client fault)
36
+ * <p>Contains details about an error where the query request expired.</p>
37
+ *
38
+ * @throws {@link InternalServiceException} (server fault)
39
+ * <p>An internal service error occurred.</p>
40
+ *
41
+ * @throws {@link InvalidInputException} (client fault)
42
+ * <p>The input provided was not valid.</p>
43
+ *
44
+ * @throws {@link WorkUnitsNotReadyYetException} (client fault)
45
+ * <p>Contains details about an error related to work units not being ready.</p>
46
+ *
47
+ *
32
48
  */
33
49
  export declare class GetWorkUnitsCommand extends $Command<GetWorkUnitsCommandInput, GetWorkUnitsCommandOutput, LakeFormationClientResolvedConfig> {
34
50
  readonly input: GetWorkUnitsCommandInput;
@@ -30,6 +30,16 @@ export interface GrantPermissionsCommandOutput extends GrantPermissionsResponse,
30
30
  * @see {@link GrantPermissionsCommandOutput} for command's `response` shape.
31
31
  * @see {@link LakeFormationClientResolvedConfig | config} for LakeFormationClient's `config` shape.
32
32
  *
33
+ * @throws {@link ConcurrentModificationException} (client fault)
34
+ * <p>Two processes are trying to modify a resource simultaneously.</p>
35
+ *
36
+ * @throws {@link EntityNotFoundException} (client fault)
37
+ * <p>A specified entity does not exist</p>
38
+ *
39
+ * @throws {@link InvalidInputException} (client fault)
40
+ * <p>The input provided was not valid.</p>
41
+ *
42
+ *
33
43
  */
34
44
  export declare class GrantPermissionsCommand extends $Command<GrantPermissionsCommandInput, GrantPermissionsCommandOutput, LakeFormationClientResolvedConfig> {
35
45
  readonly input: GrantPermissionsCommandInput;
@@ -29,6 +29,19 @@ export interface ListDataCellsFilterCommandOutput extends ListDataCellsFilterRes
29
29
  * @see {@link ListDataCellsFilterCommandOutput} for command's `response` shape.
30
30
  * @see {@link LakeFormationClientResolvedConfig | config} for LakeFormationClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>Access to a resource was denied.</p>
34
+ *
35
+ * @throws {@link InternalServiceException} (server fault)
36
+ * <p>An internal service error occurred.</p>
37
+ *
38
+ * @throws {@link InvalidInputException} (client fault)
39
+ * <p>The input provided was not valid.</p>
40
+ *
41
+ * @throws {@link OperationTimeoutException} (client fault)
42
+ * <p>The operation timed out.</p>
43
+ *
44
+ *
32
45
  */
33
46
  export declare class ListDataCellsFilterCommand extends $Command<ListDataCellsFilterCommandInput, ListDataCellsFilterCommandOutput, LakeFormationClientResolvedConfig> {
34
47
  readonly input: ListDataCellsFilterCommandInput;
@@ -29,6 +29,22 @@ export interface ListLFTagsCommandOutput extends ListLFTagsResponse, __MetadataB
29
29
  * @see {@link ListLFTagsCommandOutput} for command's `response` shape.
30
30
  * @see {@link LakeFormationClientResolvedConfig | config} for LakeFormationClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>Access to a resource was denied.</p>
34
+ *
35
+ * @throws {@link EntityNotFoundException} (client fault)
36
+ * <p>A specified entity does not exist</p>
37
+ *
38
+ * @throws {@link InternalServiceException} (server fault)
39
+ * <p>An internal service error occurred.</p>
40
+ *
41
+ * @throws {@link InvalidInputException} (client fault)
42
+ * <p>The input provided was not valid.</p>
43
+ *
44
+ * @throws {@link OperationTimeoutException} (client fault)
45
+ * <p>The operation timed out.</p>
46
+ *
47
+ *
32
48
  */
33
49
  export declare class ListLFTagsCommand extends $Command<ListLFTagsCommandInput, ListLFTagsCommandOutput, LakeFormationClientResolvedConfig> {
34
50
  readonly input: ListLFTagsCommandInput;
@@ -31,6 +31,16 @@ export interface ListPermissionsCommandOutput extends ListPermissionsResponse, _
31
31
  * @see {@link ListPermissionsCommandOutput} for command's `response` shape.
32
32
  * @see {@link LakeFormationClientResolvedConfig | config} for LakeFormationClient's `config` shape.
33
33
  *
34
+ * @throws {@link InternalServiceException} (server fault)
35
+ * <p>An internal service error occurred.</p>
36
+ *
37
+ * @throws {@link InvalidInputException} (client fault)
38
+ * <p>The input provided was not valid.</p>
39
+ *
40
+ * @throws {@link OperationTimeoutException} (client fault)
41
+ * <p>The operation timed out.</p>
42
+ *
43
+ *
34
44
  */
35
45
  export declare class ListPermissionsCommand extends $Command<ListPermissionsCommandInput, ListPermissionsCommandOutput, LakeFormationClientResolvedConfig> {
36
46
  readonly input: ListPermissionsCommandInput;
@@ -29,6 +29,16 @@ export interface ListResourcesCommandOutput extends ListResourcesResponse, __Met
29
29
  * @see {@link ListResourcesCommandOutput} for command's `response` shape.
30
30
  * @see {@link LakeFormationClientResolvedConfig | config} for LakeFormationClient's `config` shape.
31
31
  *
32
+ * @throws {@link InternalServiceException} (server fault)
33
+ * <p>An internal service error occurred.</p>
34
+ *
35
+ * @throws {@link InvalidInputException} (client fault)
36
+ * <p>The input provided was not valid.</p>
37
+ *
38
+ * @throws {@link OperationTimeoutException} (client fault)
39
+ * <p>The operation timed out.</p>
40
+ *
41
+ *
32
42
  */
33
43
  export declare class ListResourcesCommand extends $Command<ListResourcesCommandInput, ListResourcesCommandOutput, LakeFormationClientResolvedConfig> {
34
44
  readonly input: ListResourcesCommandInput;
@@ -29,6 +29,19 @@ export interface ListTableStorageOptimizersCommandOutput extends ListTableStorag
29
29
  * @see {@link ListTableStorageOptimizersCommandOutput} for command's `response` shape.
30
30
  * @see {@link LakeFormationClientResolvedConfig | config} for LakeFormationClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>Access to a resource was denied.</p>
34
+ *
35
+ * @throws {@link EntityNotFoundException} (client fault)
36
+ * <p>A specified entity does not exist</p>
37
+ *
38
+ * @throws {@link InternalServiceException} (server fault)
39
+ * <p>An internal service error occurred.</p>
40
+ *
41
+ * @throws {@link InvalidInputException} (client fault)
42
+ * <p>The input provided was not valid.</p>
43
+ *
44
+ *
32
45
  */
33
46
  export declare class ListTableStorageOptimizersCommand extends $Command<ListTableStorageOptimizersCommandInput, ListTableStorageOptimizersCommandOutput, LakeFormationClientResolvedConfig> {
34
47
  readonly input: ListTableStorageOptimizersCommandInput;
@@ -30,6 +30,16 @@ export interface ListTransactionsCommandOutput extends ListTransactionsResponse,
30
30
  * @see {@link ListTransactionsCommandOutput} for command's `response` shape.
31
31
  * @see {@link LakeFormationClientResolvedConfig | config} for LakeFormationClient's `config` shape.
32
32
  *
33
+ * @throws {@link InternalServiceException} (server fault)
34
+ * <p>An internal service error occurred.</p>
35
+ *
36
+ * @throws {@link InvalidInputException} (client fault)
37
+ * <p>The input provided was not valid.</p>
38
+ *
39
+ * @throws {@link OperationTimeoutException} (client fault)
40
+ * <p>The operation timed out.</p>
41
+ *
42
+ *
33
43
  */
34
44
  export declare class ListTransactionsCommand extends $Command<ListTransactionsCommandInput, ListTransactionsCommandOutput, LakeFormationClientResolvedConfig> {
35
45
  readonly input: ListTransactionsCommandInput;
@@ -30,6 +30,13 @@ export interface PutDataLakeSettingsCommandOutput extends PutDataLakeSettingsRes
30
30
  * @see {@link PutDataLakeSettingsCommandOutput} for command's `response` shape.
31
31
  * @see {@link LakeFormationClientResolvedConfig | config} for LakeFormationClient's `config` shape.
32
32
  *
33
+ * @throws {@link InternalServiceException} (server fault)
34
+ * <p>An internal service error occurred.</p>
35
+ *
36
+ * @throws {@link InvalidInputException} (client fault)
37
+ * <p>The input provided was not valid.</p>
38
+ *
39
+ *
33
40
  */
34
41
  export declare class PutDataLakeSettingsCommand extends $Command<PutDataLakeSettingsCommandInput, PutDataLakeSettingsCommandOutput, LakeFormationClientResolvedConfig> {
35
42
  readonly input: PutDataLakeSettingsCommandInput;
@@ -39,6 +39,28 @@ export interface RegisterResourceCommandOutput extends RegisterResourceResponse,
39
39
  * @see {@link RegisterResourceCommandOutput} for command's `response` shape.
40
40
  * @see {@link LakeFormationClientResolvedConfig | config} for LakeFormationClient's `config` shape.
41
41
  *
42
+ * @throws {@link AccessDeniedException} (client fault)
43
+ * <p>Access to a resource was denied.</p>
44
+ *
45
+ * @throws {@link AlreadyExistsException} (client fault)
46
+ * <p>A resource to be created or added already exists.</p>
47
+ *
48
+ * @throws {@link EntityNotFoundException} (client fault)
49
+ * <p>A specified entity does not exist</p>
50
+ *
51
+ * @throws {@link InternalServiceException} (server fault)
52
+ * <p>An internal service error occurred.</p>
53
+ *
54
+ * @throws {@link InvalidInputException} (client fault)
55
+ * <p>The input provided was not valid.</p>
56
+ *
57
+ * @throws {@link OperationTimeoutException} (client fault)
58
+ * <p>The operation timed out.</p>
59
+ *
60
+ * @throws {@link ResourceNumberLimitExceededException} (client fault)
61
+ * <p>A resource numerical limit was exceeded.</p>
62
+ *
63
+ *
42
64
  */
43
65
  export declare class RegisterResourceCommand extends $Command<RegisterResourceCommandInput, RegisterResourceCommandOutput, LakeFormationClientResolvedConfig> {
44
66
  readonly input: RegisterResourceCommandInput;
@@ -29,6 +29,28 @@ export interface RemoveLFTagsFromResourceCommandOutput extends RemoveLFTagsFromR
29
29
  * @see {@link RemoveLFTagsFromResourceCommandOutput} for command's `response` shape.
30
30
  * @see {@link LakeFormationClientResolvedConfig | config} for LakeFormationClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>Access to a resource was denied.</p>
34
+ *
35
+ * @throws {@link ConcurrentModificationException} (client fault)
36
+ * <p>Two processes are trying to modify a resource simultaneously.</p>
37
+ *
38
+ * @throws {@link EntityNotFoundException} (client fault)
39
+ * <p>A specified entity does not exist</p>
40
+ *
41
+ * @throws {@link GlueEncryptionException} (client fault)
42
+ * <p>An encryption operation failed.</p>
43
+ *
44
+ * @throws {@link InternalServiceException} (server fault)
45
+ * <p>An internal service error occurred.</p>
46
+ *
47
+ * @throws {@link InvalidInputException} (client fault)
48
+ * <p>The input provided was not valid.</p>
49
+ *
50
+ * @throws {@link OperationTimeoutException} (client fault)
51
+ * <p>The operation timed out.</p>
52
+ *
53
+ *
32
54
  */
33
55
  export declare class RemoveLFTagsFromResourceCommand extends $Command<RemoveLFTagsFromResourceCommandInput, RemoveLFTagsFromResourceCommandOutput, LakeFormationClientResolvedConfig> {
34
56
  readonly input: RemoveLFTagsFromResourceCommandInput;
@@ -29,6 +29,16 @@ export interface RevokePermissionsCommandOutput extends RevokePermissionsRespons
29
29
  * @see {@link RevokePermissionsCommandOutput} for command's `response` shape.
30
30
  * @see {@link LakeFormationClientResolvedConfig | config} for LakeFormationClient's `config` shape.
31
31
  *
32
+ * @throws {@link ConcurrentModificationException} (client fault)
33
+ * <p>Two processes are trying to modify a resource simultaneously.</p>
34
+ *
35
+ * @throws {@link EntityNotFoundException} (client fault)
36
+ * <p>A specified entity does not exist</p>
37
+ *
38
+ * @throws {@link InvalidInputException} (client fault)
39
+ * <p>The input provided was not valid.</p>
40
+ *
41
+ *
32
42
  */
33
43
  export declare class RevokePermissionsCommand extends $Command<RevokePermissionsCommandInput, RevokePermissionsCommandOutput, LakeFormationClientResolvedConfig> {
34
44
  readonly input: RevokePermissionsCommandInput;
@@ -29,6 +29,25 @@ export interface SearchDatabasesByLFTagsCommandOutput extends SearchDatabasesByL
29
29
  * @see {@link SearchDatabasesByLFTagsCommandOutput} for command's `response` shape.
30
30
  * @see {@link LakeFormationClientResolvedConfig | config} for LakeFormationClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>Access to a resource was denied.</p>
34
+ *
35
+ * @throws {@link EntityNotFoundException} (client fault)
36
+ * <p>A specified entity does not exist</p>
37
+ *
38
+ * @throws {@link GlueEncryptionException} (client fault)
39
+ * <p>An encryption operation failed.</p>
40
+ *
41
+ * @throws {@link InternalServiceException} (server fault)
42
+ * <p>An internal service error occurred.</p>
43
+ *
44
+ * @throws {@link InvalidInputException} (client fault)
45
+ * <p>The input provided was not valid.</p>
46
+ *
47
+ * @throws {@link OperationTimeoutException} (client fault)
48
+ * <p>The operation timed out.</p>
49
+ *
50
+ *
32
51
  */
33
52
  export declare class SearchDatabasesByLFTagsCommand extends $Command<SearchDatabasesByLFTagsCommandInput, SearchDatabasesByLFTagsCommandOutput, LakeFormationClientResolvedConfig> {
34
53
  readonly input: SearchDatabasesByLFTagsCommandInput;
@@ -29,6 +29,25 @@ export interface SearchTablesByLFTagsCommandOutput extends SearchTablesByLFTagsR
29
29
  * @see {@link SearchTablesByLFTagsCommandOutput} for command's `response` shape.
30
30
  * @see {@link LakeFormationClientResolvedConfig | config} for LakeFormationClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>Access to a resource was denied.</p>
34
+ *
35
+ * @throws {@link EntityNotFoundException} (client fault)
36
+ * <p>A specified entity does not exist</p>
37
+ *
38
+ * @throws {@link GlueEncryptionException} (client fault)
39
+ * <p>An encryption operation failed.</p>
40
+ *
41
+ * @throws {@link InternalServiceException} (server fault)
42
+ * <p>An internal service error occurred.</p>
43
+ *
44
+ * @throws {@link InvalidInputException} (client fault)
45
+ * <p>The input provided was not valid.</p>
46
+ *
47
+ * @throws {@link OperationTimeoutException} (client fault)
48
+ * <p>The operation timed out.</p>
49
+ *
50
+ *
32
51
  */
33
52
  export declare class SearchTablesByLFTagsCommand extends $Command<SearchTablesByLFTagsCommandInput, SearchTablesByLFTagsCommandOutput, LakeFormationClientResolvedConfig> {
34
53
  readonly input: SearchTablesByLFTagsCommandInput;
@@ -30,6 +30,19 @@ export interface StartQueryPlanningCommandOutput extends StartQueryPlanningRespo
30
30
  * @see {@link StartQueryPlanningCommandOutput} for command's `response` shape.
31
31
  * @see {@link LakeFormationClientResolvedConfig | config} for LakeFormationClient's `config` shape.
32
32
  *
33
+ * @throws {@link AccessDeniedException} (client fault)
34
+ * <p>Access to a resource was denied.</p>
35
+ *
36
+ * @throws {@link InternalServiceException} (server fault)
37
+ * <p>An internal service error occurred.</p>
38
+ *
39
+ * @throws {@link InvalidInputException} (client fault)
40
+ * <p>The input provided was not valid.</p>
41
+ *
42
+ * @throws {@link ThrottledException} (client fault)
43
+ * <p>Contains details about an error where the query request was throttled.</p>
44
+ *
45
+ *
33
46
  */
34
47
  export declare class StartQueryPlanningCommand extends $Command<StartQueryPlanningCommandInput, StartQueryPlanningCommandOutput, LakeFormationClientResolvedConfig> {
35
48
  readonly input: StartQueryPlanningCommandInput;
@@ -29,6 +29,13 @@ export interface StartTransactionCommandOutput extends StartTransactionResponse,
29
29
  * @see {@link StartTransactionCommandOutput} for command's `response` shape.
30
30
  * @see {@link LakeFormationClientResolvedConfig | config} for LakeFormationClient's `config` shape.
31
31
  *
32
+ * @throws {@link InternalServiceException} (server fault)
33
+ * <p>An internal service error occurred.</p>
34
+ *
35
+ * @throws {@link OperationTimeoutException} (client fault)
36
+ * <p>The operation timed out.</p>
37
+ *
38
+ *
32
39
  */
33
40
  export declare class StartTransactionCommand extends $Command<StartTransactionCommandInput, StartTransactionCommandOutput, LakeFormationClientResolvedConfig> {
34
41
  readonly input: StartTransactionCommandInput;
@@ -29,6 +29,25 @@ export interface UpdateDataCellsFilterCommandOutput extends UpdateDataCellsFilte
29
29
  * @see {@link UpdateDataCellsFilterCommandOutput} for command's `response` shape.
30
30
  * @see {@link LakeFormationClientResolvedConfig | config} for LakeFormationClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>Access to a resource was denied.</p>
34
+ *
35
+ * @throws {@link ConcurrentModificationException} (client fault)
36
+ * <p>Two processes are trying to modify a resource simultaneously.</p>
37
+ *
38
+ * @throws {@link EntityNotFoundException} (client fault)
39
+ * <p>A specified entity does not exist</p>
40
+ *
41
+ * @throws {@link InternalServiceException} (server fault)
42
+ * <p>An internal service error occurred.</p>
43
+ *
44
+ * @throws {@link InvalidInputException} (client fault)
45
+ * <p>The input provided was not valid.</p>
46
+ *
47
+ * @throws {@link OperationTimeoutException} (client fault)
48
+ * <p>The operation timed out.</p>
49
+ *
50
+ *
32
51
  */
33
52
  export declare class UpdateDataCellsFilterCommand extends $Command<UpdateDataCellsFilterCommandInput, UpdateDataCellsFilterCommandOutput, LakeFormationClientResolvedConfig> {
34
53
  readonly input: UpdateDataCellsFilterCommandInput;
@@ -29,6 +29,25 @@ export interface UpdateLFTagCommandOutput extends UpdateLFTagResponse, __Metadat
29
29
  * @see {@link UpdateLFTagCommandOutput} for command's `response` shape.
30
30
  * @see {@link LakeFormationClientResolvedConfig | config} for LakeFormationClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>Access to a resource was denied.</p>
34
+ *
35
+ * @throws {@link ConcurrentModificationException} (client fault)
36
+ * <p>Two processes are trying to modify a resource simultaneously.</p>
37
+ *
38
+ * @throws {@link EntityNotFoundException} (client fault)
39
+ * <p>A specified entity does not exist</p>
40
+ *
41
+ * @throws {@link InternalServiceException} (server fault)
42
+ * <p>An internal service error occurred.</p>
43
+ *
44
+ * @throws {@link InvalidInputException} (client fault)
45
+ * <p>The input provided was not valid.</p>
46
+ *
47
+ * @throws {@link OperationTimeoutException} (client fault)
48
+ * <p>The operation timed out.</p>
49
+ *
50
+ *
32
51
  */
33
52
  export declare class UpdateLFTagCommand extends $Command<UpdateLFTagCommandInput, UpdateLFTagCommandOutput, LakeFormationClientResolvedConfig> {
34
53
  readonly input: UpdateLFTagCommandInput;
@@ -29,6 +29,19 @@ export interface UpdateResourceCommandOutput extends UpdateResourceResponse, __M
29
29
  * @see {@link UpdateResourceCommandOutput} for command's `response` shape.
30
30
  * @see {@link LakeFormationClientResolvedConfig | config} for LakeFormationClient's `config` shape.
31
31
  *
32
+ * @throws {@link EntityNotFoundException} (client fault)
33
+ * <p>A specified entity does not exist</p>
34
+ *
35
+ * @throws {@link InternalServiceException} (server fault)
36
+ * <p>An internal service error occurred.</p>
37
+ *
38
+ * @throws {@link InvalidInputException} (client fault)
39
+ * <p>The input provided was not valid.</p>
40
+ *
41
+ * @throws {@link OperationTimeoutException} (client fault)
42
+ * <p>The operation timed out.</p>
43
+ *
44
+ *
32
45
  */
33
46
  export declare class UpdateResourceCommand extends $Command<UpdateResourceCommandInput, UpdateResourceCommandOutput, LakeFormationClientResolvedConfig> {
34
47
  readonly input: UpdateResourceCommandInput;
@@ -29,6 +29,34 @@ export interface UpdateTableObjectsCommandOutput extends UpdateTableObjectsRespo
29
29
  * @see {@link UpdateTableObjectsCommandOutput} for command's `response` shape.
30
30
  * @see {@link LakeFormationClientResolvedConfig | config} for LakeFormationClient's `config` shape.
31
31
  *
32
+ * @throws {@link ConcurrentModificationException} (client fault)
33
+ * <p>Two processes are trying to modify a resource simultaneously.</p>
34
+ *
35
+ * @throws {@link EntityNotFoundException} (client fault)
36
+ * <p>A specified entity does not exist</p>
37
+ *
38
+ * @throws {@link InternalServiceException} (server fault)
39
+ * <p>An internal service error occurred.</p>
40
+ *
41
+ * @throws {@link InvalidInputException} (client fault)
42
+ * <p>The input provided was not valid.</p>
43
+ *
44
+ * @throws {@link OperationTimeoutException} (client fault)
45
+ * <p>The operation timed out.</p>
46
+ *
47
+ * @throws {@link ResourceNotReadyException} (client fault)
48
+ * <p>Contains details about an error related to a resource which is not ready for a transaction.</p>
49
+ *
50
+ * @throws {@link TransactionCanceledException} (client fault)
51
+ * <p>Contains details about an error related to a transaction that was cancelled.</p>
52
+ *
53
+ * @throws {@link TransactionCommitInProgressException} (client fault)
54
+ * <p>Contains details about an error related to a transaction commit that was in progress.</p>
55
+ *
56
+ * @throws {@link TransactionCommittedException} (client fault)
57
+ * <p>Contains details about an error where the specified transaction has already been committed and cannot be used for <code>UpdateTableObjects</code>.</p>
58
+ *
59
+ *
32
60
  */
33
61
  export declare class UpdateTableObjectsCommand extends $Command<UpdateTableObjectsCommandInput, UpdateTableObjectsCommandOutput, LakeFormationClientResolvedConfig> {
34
62
  readonly input: UpdateTableObjectsCommandInput;
@@ -29,6 +29,19 @@ export interface UpdateTableStorageOptimizerCommandOutput extends UpdateTableSto
29
29
  * @see {@link UpdateTableStorageOptimizerCommandOutput} for command's `response` shape.
30
30
  * @see {@link LakeFormationClientResolvedConfig | config} for LakeFormationClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>Access to a resource was denied.</p>
34
+ *
35
+ * @throws {@link EntityNotFoundException} (client fault)
36
+ * <p>A specified entity does not exist</p>
37
+ *
38
+ * @throws {@link InternalServiceException} (server fault)
39
+ * <p>An internal service error occurred.</p>
40
+ *
41
+ * @throws {@link InvalidInputException} (client fault)
42
+ * <p>The input provided was not valid.</p>
43
+ *
44
+ *
32
45
  */
33
46
  export declare class UpdateTableStorageOptimizerCommand extends $Command<UpdateTableStorageOptimizerCommandInput, UpdateTableStorageOptimizerCommandOutput, LakeFormationClientResolvedConfig> {
34
47
  readonly input: UpdateTableStorageOptimizerCommandInput;
@@ -656,6 +656,9 @@ export interface DataCellsFilter {
656
656
  * <code>ColumnWildCard</code>. </p>
657
657
  */
658
658
  ColumnWildcard?: ColumnWildcard;
659
+ /**
660
+ * <p>The ID of the data cells filter version.</p>
661
+ */
659
662
  VersionId?: string;
660
663
  }
661
664
  export interface CreateDataCellsFilterRequest {
@@ -1885,7 +1888,7 @@ export interface RevokePermissionsRequest {
1885
1888
  */
1886
1889
  Resource: Resource | undefined;
1887
1890
  /**
1888
- * <p>The permissions revoked to the principal on the resource. For information about permissions, see <a href="https://docs-aws.amazon.com/lake-formation/latest/dg/security-data-access.html">Security
1891
+ * <p>The permissions revoked to the principal on the resource. For information about permissions, see <a href="https://docs.aws.amazon.com/lake-formation/latest/dg/security-data-access.html">Security
1889
1892
  * and Access Control to Metadata and Data</a>.</p>
1890
1893
  */
1891
1894
  Permissions: (Permission | string)[] | undefined;
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.289.0",
4
+ "version": "3.292.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -20,57 +20,52 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.289.0",
24
- "@aws-sdk/config-resolver": "3.289.0",
25
- "@aws-sdk/credential-provider-node": "3.289.0",
26
- "@aws-sdk/fetch-http-handler": "3.289.0",
27
- "@aws-sdk/hash-node": "3.289.0",
28
- "@aws-sdk/invalid-dependency": "3.289.0",
29
- "@aws-sdk/middleware-content-length": "3.289.0",
30
- "@aws-sdk/middleware-endpoint": "3.289.0",
31
- "@aws-sdk/middleware-host-header": "3.289.0",
32
- "@aws-sdk/middleware-logger": "3.289.0",
33
- "@aws-sdk/middleware-recursion-detection": "3.289.0",
34
- "@aws-sdk/middleware-retry": "3.289.0",
35
- "@aws-sdk/middleware-serde": "3.289.0",
36
- "@aws-sdk/middleware-signing": "3.289.0",
37
- "@aws-sdk/middleware-stack": "3.289.0",
38
- "@aws-sdk/middleware-user-agent": "3.289.0",
39
- "@aws-sdk/node-config-provider": "3.289.0",
40
- "@aws-sdk/node-http-handler": "3.289.0",
41
- "@aws-sdk/protocol-http": "3.289.0",
42
- "@aws-sdk/smithy-client": "3.289.0",
43
- "@aws-sdk/types": "3.289.0",
44
- "@aws-sdk/url-parser": "3.289.0",
45
- "@aws-sdk/util-base64": "3.208.0",
46
- "@aws-sdk/util-body-length-browser": "3.188.0",
47
- "@aws-sdk/util-body-length-node": "3.208.0",
48
- "@aws-sdk/util-defaults-mode-browser": "3.289.0",
49
- "@aws-sdk/util-defaults-mode-node": "3.289.0",
50
- "@aws-sdk/util-endpoints": "3.289.0",
51
- "@aws-sdk/util-retry": "3.289.0",
52
- "@aws-sdk/util-stream-browser": "3.289.0",
53
- "@aws-sdk/util-stream-node": "3.289.0",
54
- "@aws-sdk/util-user-agent-browser": "3.289.0",
55
- "@aws-sdk/util-user-agent-node": "3.289.0",
56
- "@aws-sdk/util-utf8": "3.254.0",
23
+ "@aws-sdk/client-sts": "3.292.0",
24
+ "@aws-sdk/config-resolver": "3.292.0",
25
+ "@aws-sdk/credential-provider-node": "3.292.0",
26
+ "@aws-sdk/fetch-http-handler": "3.292.0",
27
+ "@aws-sdk/hash-node": "3.292.0",
28
+ "@aws-sdk/invalid-dependency": "3.292.0",
29
+ "@aws-sdk/middleware-content-length": "3.292.0",
30
+ "@aws-sdk/middleware-endpoint": "3.292.0",
31
+ "@aws-sdk/middleware-host-header": "3.292.0",
32
+ "@aws-sdk/middleware-logger": "3.292.0",
33
+ "@aws-sdk/middleware-recursion-detection": "3.292.0",
34
+ "@aws-sdk/middleware-retry": "3.292.0",
35
+ "@aws-sdk/middleware-serde": "3.292.0",
36
+ "@aws-sdk/middleware-signing": "3.292.0",
37
+ "@aws-sdk/middleware-stack": "3.292.0",
38
+ "@aws-sdk/middleware-user-agent": "3.292.0",
39
+ "@aws-sdk/node-config-provider": "3.292.0",
40
+ "@aws-sdk/node-http-handler": "3.292.0",
41
+ "@aws-sdk/protocol-http": "3.292.0",
42
+ "@aws-sdk/smithy-client": "3.292.0",
43
+ "@aws-sdk/types": "3.292.0",
44
+ "@aws-sdk/url-parser": "3.292.0",
45
+ "@aws-sdk/util-base64": "3.292.0",
46
+ "@aws-sdk/util-body-length-browser": "3.292.0",
47
+ "@aws-sdk/util-body-length-node": "3.292.0",
48
+ "@aws-sdk/util-defaults-mode-browser": "3.292.0",
49
+ "@aws-sdk/util-defaults-mode-node": "3.292.0",
50
+ "@aws-sdk/util-endpoints": "3.292.0",
51
+ "@aws-sdk/util-retry": "3.292.0",
52
+ "@aws-sdk/util-stream-browser": "3.292.0",
53
+ "@aws-sdk/util-stream-node": "3.292.0",
54
+ "@aws-sdk/util-user-agent-browser": "3.292.0",
55
+ "@aws-sdk/util-user-agent-node": "3.292.0",
56
+ "@aws-sdk/util-utf8": "3.292.0",
57
57
  "tslib": "^2.3.1"
58
58
  },
59
59
  "devDependencies": {
60
- "@aws-sdk/service-client-documentation-generator": "3.208.0",
60
+ "@aws-sdk/service-client-documentation-generator": "3.292.0",
61
61
  "@tsconfig/node14": "1.0.3",
62
62
  "@types/node": "^14.14.31",
63
63
  "concurrently": "7.0.0",
64
64
  "downlevel-dts": "0.10.1",
65
65
  "rimraf": "3.0.2",
66
- "typedoc": "0.19.2",
66
+ "typedoc": "0.23.23",
67
67
  "typescript": "~4.6.2"
68
68
  },
69
- "overrides": {
70
- "typedoc": {
71
- "typescript": "~4.6.2"
72
- }
73
- },
74
69
  "engines": {
75
70
  "node": ">=14.0.0"
76
71
  },