DescribeBackup
Source:
src/AWS/DynamoDB/DescribeBackup.ts
Runtime binding for dynamodb:DescribeBackup.
Bind this operation to a Table inside a function runtime to get a callable
that reads the status and details of one of the bound table’s backups by
ARN. The IAM grant covers every backup of the bound table
({tableArn}/backup/*). Provide the DescribeBackupHttp layer on the
Function to satisfy the binding.
Backup and Restore
Section titled “Backup and Restore”const describeBackup = yield* AWS.DynamoDB.DescribeBackup(table);
const response = yield* describeBackup({ BackupArn: backupArn });const status = response.BackupDescription?.BackupDetails?.BackupStatus;