List Transactions
| lakeformation_list_transactions | R Documentation |
Returns metadata about transactions and their status¶
Description¶
Returns metadata about transactions and their status. To prevent the response from growing indefinitely, only uncommitted transactions and those available for time-travel queries are returned.
This operation can help you identify uncommitted transactions or to get information about transactions.
Usage¶
Arguments¶
CatalogIdThe catalog for which to list transactions. Defaults to the account ID of the caller.
StatusFilterA filter indicating the status of transactions to return. Options are ALL | COMPLETED | COMMITTED | ABORTED | ACTIVE. The default is
ALL.MaxResultsThe maximum number of transactions to return in a single call.
NextTokenA continuation token if this is not the first call to retrieve transactions.
Value¶
A list with the following syntax:
list(
Transactions = list(
list(
TransactionId = "string",
TransactionStatus = "ACTIVE"|"COMMITTED"|"ABORTED"|"COMMIT_IN_PROGRESS",
TransactionStartTime = as.POSIXct(
"2015-01-01"
),
TransactionEndTime = as.POSIXct(
"2015-01-01"
)
)
),
NextToken = "string"
)