Update Table Objects
lakeformation_update_table_objects | R Documentation |
Updates the manifest of Amazon S3 objects that make up the specified governed table¶
Description¶
Updates the manifest of Amazon S3 objects that make up the specified governed table.
Usage¶
lakeformation_update_table_objects(CatalogId, DatabaseName, TableName,
TransactionId, WriteOperations)
Arguments¶
CatalogId
The catalog containing the governed table to update. Defaults to the caller’s account ID.
DatabaseName
[required] The database containing the governed table to update.
TableName
[required] The governed table to update.
TransactionId
The transaction at which to do the write.
WriteOperations
[required] A list of
WriteOperation
objects that define an object to add to or delete from the manifest for a governed table.
Value¶
An empty list.
Request syntax¶
svc$update_table_objects(
CatalogId = "string",
DatabaseName = "string",
TableName = "string",
TransactionId = "string",
WriteOperations = list(
list(
AddObject = list(
Uri = "string",
ETag = "string",
Size = 123,
PartitionValues = list(
"string"
)
),
DeleteObject = list(
Uri = "string",
ETag = "string",
PartitionValues = list(
"string"
)
)
)
)
)