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.
Backup and Restore
Section titled “Backup and Restore”const listBackups = yield* AWS.DynamoDB.ListBackups(table);
const response = yield* listBackups();const backups = response.BackupSummaries;