Skip to content

TableCommand

type TableCommand<Output> = object;

Interface-like type for table-level commands that execute directly against a DynamoTable.

Output

The output type of the command’s execute method.

execute(table): Promise<Output>;

DynamoTable

Promise<Output>