本文整理汇总了TypeScript中aws-sdk.DynamoDB.DocumentClient.put方法的典型用法代码示例。如果您正苦于以下问题:TypeScript DynamoDB.DocumentClient.put方法的具体用法?TypeScript DynamoDB.DocumentClient.put怎么用?TypeScript DynamoDB.DocumentClient.put使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类aws-sdk.DynamoDB.DocumentClient
的用法示例。
在下文中一共展示了DynamoDB.DocumentClient.put方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: putData
async function putData(data : WakatimeDynamoData) {
const dynamo = new DynamoDB.DocumentClient({
region: 'ap-southeast-2',
})
const res = await dynamo
.put({
Item: data,
TableName: 'Zacher.com.au',
})
.promise()
if (res.$response.error) {
console.error(res.$response.error)
throw new Error('Unable to update wakatime data')
}
console.info('Updated Wakatime data in DynamoDB')
}
示例2: Date
module.exports.create = (event, context, callback) => {
const timestamp = new Date().getTime()
const data = JSON.parse(event.body)
if (typeof data.text !== 'string') {
console.error('Validation Failed')
callback(new Error('Couldn\'t create the todo item.'))
return
}
const params = {
TableName: process.env.DYNAMODB_TABLE,
Item: {
id: uuid.v1(),
text: data.text,
checked: false,
createdAt: timestamp,
updatedAt: timestamp
}
}
// write the todo to the database
dynamoDb.put(params, (error, result) => {
// handle potential errors
if (error) {
console.error(error)
callback(new Error('Couldn\'t create the todo item.'))
return
}
// create a response
const response = {
statusCode: 200,
body: JSON.stringify(result.Item)
}
callback(null, response)
})
}