UNPKG

227 BJavaScriptView Raw
1
2module.exports = function describeTimeToLive(store, data, cb) {
3 store.getTable(data.TableName, false, function(err) {
4 if (err) return cb(err)
5
6 cb(null, {TimeToLiveDescription: {TimeToLiveStatus: 'DISABLED'}})
7 })
8}