Whatever message this page gives is out now! Go check it out!
serviceHandle.describeBackup(requestParameters)<cfscript>
cred = {
"credentialAlias" : "myalias",
"vendorName" : "AWS",
"region" : "us-east-2",
"secretAccessKey" : "xxxxx",
"accessKeyId" : "xxxx"
}
conf={
"serviceName"="DYNAMODB"
}
dynamo=getCloudService(cred, conf)
tableName="YearlyProductCatalog"
// list all backups
listBackupsStruct={
"BackupType": "ALL",
"Limit":20,
"TableName":"#tableName#"
}
backupList=dynamo.listBackups(listBackupsStruct)
// retrieve the first Backup ARN for which we shall see the details
getArn=backupList.BackupSummaries[1].BackupArn
describeBackupStruct={
"BackupArn": "#getArn#"
}
// describe backup
describeBackupResponse=dynamo.describeBackup(describeBackupStruct)
writeDump(describeBackupResponse)
</cfscript>