How I can modify following code using boto3.resource()
client = boto3.client('dynamodb', region_name='us-west-2')
response = client.create_backup(
TableName='test',
BackupName='backup_test'
)
I don't want to use 'boto3.client' here. same I also want to restore my table using boto3.resource()
答案 0 :(得分:0)
目前无法使用 boto3 的 dynamodb 资源备份表。