aws.lakeformation.list_transactions
Example SQL Queries
SELECT * FROMaws.lakeformation.list_transactions;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.
Table Definition
| Column Name | Column Data Type |
|---|---|
| catalog_id Input Column The catalog for which to list transactions. Defaults to the account ID of the caller. | VARCHAR |
| max_results Input Column The maximum number of transactions to return in a single call. | BIGINT |
| next_token Input Column A continuation token indicating whether additional data is available. | VARCHAR |
| status_filter Input Column A filter indicating the status of transactions to return. Options are ALL | COMPLETED | COMMITTED | ABORTED | ACTIVE. The default is ALL. | VARCHAR |
| _aws_profile Input Column The AWS profile defines the AWS identity used. It can be defined via credentials or by assuming a IAM role. | STRUCT( |
Show child fields
| |
| _aws_region Input Column The AWS region to use. | VARCHAR |
| transactions A list of transactions. The record for each transaction is a TransactionDescription object. | STRUCT( |
Show child fields
| |