Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ListTransactionsRequest

import type { ListTransactionsRequest } from "https://aws-api.deno.dev/v0.3/services/lakeformation.ts?docs=full";
interface ListTransactionsRequest {
CatalogId?: string | null;
MaxResults?: number | null;
NextToken?: string | null;
StatusFilter?: TransactionStatusFilter | null;
}

§Properties

§
CatalogId?: string | null
[src]

The catalog for which to list transactions. Defaults to the account ID of the caller.

§
MaxResults?: number | null
[src]

The maximum number of transactions to return in a single call.

§
NextToken?: string | null
[src]

A continuation token if this is not the first call to retrieve transactions.

§
StatusFilter?: TransactionStatusFilter | null
[src]

A filter indicating the status of transactions to return. Options are ALL | COMPLETED | COMMITTED | ABORTED | ACTIVE. The default is ALL.