We are excited to announce our new API Documentation.
Protected
Updates the manifest of Amazon S3 objects that make up the specified governed table.
Use a bare-bones client and the command you need to make an API call.
import { LakeFormationClient, UpdateTableObjectsCommand } from "@aws-sdk/client-lakeformation"; // ES Modules import// const { LakeFormationClient, UpdateTableObjectsCommand } = require("@aws-sdk/client-lakeformation"); // CommonJS importconst client = new LakeFormationClient(config);const input = { // UpdateTableObjectsRequest CatalogId: "STRING_VALUE", DatabaseName: "STRING_VALUE", // required TableName: "STRING_VALUE", // required TransactionId: "STRING_VALUE", WriteOperations: [ // WriteOperationList // required { // WriteOperation AddObject: { // AddObjectInput Uri: "STRING_VALUE", // required ETag: "STRING_VALUE", // required Size: Number("long"), // required PartitionValues: [ // PartitionValuesList "STRING_VALUE", ], }, DeleteObject: { // DeleteObjectInput Uri: "STRING_VALUE", // required ETag: "STRING_VALUE", PartitionValues: [ "STRING_VALUE", ], }, }, ],};const command = new UpdateTableObjectsCommand(input);const response = await client.send(command);// {};
UpdateTableObjectsCommandInput
UpdateTableObjectsCommandOutput
input
response
config
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.
ResourceNotReadyException (client fault)
Contains details about an error related to a resource which is not ready for a transaction.
TransactionCanceledException (client fault)
Contains details about an error related to a transaction that was cancelled.
TransactionCommitInProgressException (client fault)
Contains details about an error related to a transaction commit that was in progress.
TransactionCommittedException (client fault)
Contains details about an error where the specified transaction has already been committed and cannot be used for UpdateTableObjects.
UpdateTableObjects
LakeFormationServiceException
Base exception class for all service exceptions from LakeFormation service.
Readonly
Static
Updates the manifest of Amazon S3 objects that make up the specified governed table.
Example
Use a bare-bones client and the command you need to make an API call.
Param
UpdateTableObjectsCommandInput
Returns
UpdateTableObjectsCommandOutput
See
input
shape.response
shape.config
shape.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
ResourceNotReadyException (client fault)
Contains details about an error related to a resource which is not ready for a transaction.
Throws
TransactionCanceledException (client fault)
Contains details about an error related to a transaction that was cancelled.
Throws
TransactionCommitInProgressException (client fault)
Contains details about an error related to a transaction commit that was in progress.
Throws
TransactionCommittedException (client fault)
Contains details about an error where the specified transaction has already been committed and cannot be used for
UpdateTableObjects
.Throws
LakeFormationServiceException
Base exception class for all service exceptions from LakeFormation service.