We are excited to announce our new API Documentation.
Protected
Updates a data cell filter.
Use a bare-bones client and the command you need to make an API call.
import { LakeFormationClient, UpdateDataCellsFilterCommand } from "@aws-sdk/client-lakeformation"; // ES Modules import// const { LakeFormationClient, UpdateDataCellsFilterCommand } = require("@aws-sdk/client-lakeformation"); // CommonJS importconst client = new LakeFormationClient(config);const input = { // UpdateDataCellsFilterRequest TableData: { // DataCellsFilter TableCatalogId: "STRING_VALUE", // required DatabaseName: "STRING_VALUE", // required TableName: "STRING_VALUE", // required Name: "STRING_VALUE", // required RowFilter: { // RowFilter FilterExpression: "STRING_VALUE", AllRowsWildcard: {}, }, ColumnNames: [ // ColumnNames "STRING_VALUE", ], ColumnWildcard: { // ColumnWildcard ExcludedColumnNames: [ "STRING_VALUE", ], }, VersionId: "STRING_VALUE", },};const command = new UpdateDataCellsFilterCommand(input);const response = await client.send(command);// {};
UpdateDataCellsFilterCommandInput
UpdateDataCellsFilterCommandOutput
input
response
config
AccessDeniedException (client fault)
Access to a resource was denied.
ConcurrentModificationException (client fault)
Two processes are trying to modify a resource simultaneously.
EntityNotFoundException (client fault)
A specified entity does not exist.
InternalServiceException (server fault)
An internal service error occurred.
InvalidInputException (client fault)
The input provided was not valid.
OperationTimeoutException (client fault)
The operation timed out.
LakeFormationServiceException
Base exception class for all service exceptions from LakeFormation service.
Readonly
Static
Updates a data cell filter.
Example
Use a bare-bones client and the command you need to make an API call.
Param
UpdateDataCellsFilterCommandInput
Returns
UpdateDataCellsFilterCommandOutput
See
input
shape.response
shape.config
shape.Throws
AccessDeniedException (client fault)
Access to a resource was denied.
Throws
ConcurrentModificationException (client fault)
Two processes are trying to modify a resource simultaneously.
Throws
EntityNotFoundException (client fault)
A specified entity does not exist.
Throws
InternalServiceException (server fault)
An internal service error occurred.
Throws
InvalidInputException (client fault)
The input provided was not valid.
Throws
OperationTimeoutException (client fault)
The operation timed out.
Throws
LakeFormationServiceException
Base exception class for all service exceptions from LakeFormation service.