Apache VTL - 复制节点

Apache VTL - Copy node

有没有办法使用 apache VTL 进行深度复制? 我试图通过 requestTemplates 使用 x-amazon-apigateway-integration。 输入JSON如下图,

{
  "userid": "21d6523137f6",
  "time": "2020-06-16T15:22:33Z",
  "item": {
    "UserID" : { "S": "21d6523137f6" },
    <... some complex json nodes here ...>,
    "TimeUTC" : { "S": "2020-06-16T15:22:33Z" },
  }
} 

requestTemplate如下图,

        requestTemplates:
          application/json: !Sub
            - |
              #set($inputRoot = $input.path('$'))
              {
                "TableName": "${tableName}",
                "ConditionExpression": "attribute_not_exists(TimeUTC) OR TimeUTC > :sk",
                "ExpressionAttributeValues": {
                  ":sk":{
                    "S": "$util.escapeJavaScript($input.path('$.time'))"
                  }
                },
                "Item": "$input.path('$.item')", <== Copy the entire item over to Item.
                "ReturnValues": "ALL_OLD",
                "ReturnConsumedCapacity": "INDEXES",
                "ReturnItemCollectionMetrics": "SIZE"
              }
            - {
            tableName: !Ref EventsTable
            }

问题是,项目被复制了,

  "Item": "{UserID={S=21d6523137f6}, Lat={S=37.33180957}, Lng={S=-122.03053391}, ... other json elements..., TimeUTC={S=2020-06-16T15:22:33Z}}",

如您所见,整个嵌套 json 变成了单个属性。虽然我预计它会像下面那样成为一个完全成熟的 json 节点,

  "Item": {
    "UserID" : { "S": "21d6523137f6" },
    "Lat": { "S": "37.33180957" },
    "Lng": { "S": "-122.03053391" },
    <.... JSON nodes ...>
    "TimeUTC" : { "S": "2020-06-20T15:22:33Z" }
  },

是否可以像上面那样在 json 节点上进行 deep/nested 复制操作,而无需执行迭代节点并将子节点附加到 json 节点变量等的功夫。 ..

顺便说一句,我使用的是 AWS API 网关请求模板,因此它可能不支持所有 Apache VTL 模板选项。

您需要使用 $input.json 方法而不是 $input.path

"Item": $input.json('$.item'),

请注意,我删除了双引号。

如果你有双引号是因为你想字符串化 $.item,你可以这样做:

"Item": "$util.escapeJavaScript($input.json('$.item'))",