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.
example
Use a bare-bones client and the command you need to make an API call.
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.
Use a bare-bones client and the command you need to make an API call.
import { LakeFormationClient, ListTransactionsCommand } from "@aws-sdk/client-lakeformation"; // ES Modules import // const { LakeFormationClient, ListTransactionsCommand } = require("@aws-sdk/client-lakeformation"); // CommonJS import const client = new LakeFormationClient(config); const command = new ListTransactionsCommand(input); const response = await client.send(command);
ListTransactionsCommandInput for command's
input
shape.ListTransactionsCommandOutput for command's
response
shape.config for LakeFormationClient's
config
shape.