如何在VTL中的putItem中添加当前日期

时间:2018-12-05 05:38:06

标签: aws-appsync vtl

{
  "version": "2017-02-28",
  "operation": "PutItem",
  "key": {
    "id": $util.dynamodb.toDynamoDBJson($util.autoId()),
    "createdDate":$core_v2_utility.CurrentDate
  },
  "attributeValues": $util.dynamodb.toMapValuesJson($ctx.args.input),
  "condition": {
    "expression": "attribute_not_exists(#id)",
    "expressionNames": {
      "#id": "id",
      "#createdDate":"createdDate",
    },
   },
}

我一直在尝试使用VTL将createDate添加到DynamoDB中。我发现$ core_v2_utility.CurrentDate错误

1 个答案:

答案 0 :(得分:0)

AWS AppSync没有$core_v2_utility.CurrentDate。您是要使用time helpers之一吗? $util.time.nowFormatted("yyyy-MM-dd HH:mm:ssZ")为您提供UTC的当前日期和时间。