Skip to content

ListBackups

Source: src/AWS/DynamoDB/ListBackups.ts

Runtime binding for dynamodb:ListBackups.

Bind this operation to a Table inside a function runtime to get a callable that lists the bound table’s on-demand backups, automatically injecting the table name. Provide the ListBackupsHttp layer on the Function to satisfy the binding.

const listBackups = yield* AWS.DynamoDB.ListBackups(table);
const response = yield* listBackups();
const backups = response.BackupSummaries;