IST time in AWS appsync pipeline resolver function

0

I have a pipeline resolver which should automatically fetch the current IST date time from $util.time in aws appsync,

$util.time.nowISO8601() returns the UTC time, It works perfectly but then i should setup time conversion on my app frontend

I get an error when trying $util.time.nowFormatted("yyyy-MM-dd HH:mm:ssZ", "Asia/Kolkatta") "message": "Cannot return null for non-nullable type: 'AWSDateTime' within parent

已提问 2 年前467 查看次数
1 回答
1
已接受的回答

I believe the root cause is a typo in ZoneId. According to utility documentation formats is based on DateTimeFormatter which uses TZDB IDs for TimeZones. According to this it should be either Asia/Calcutta or Asia/Kolkata. You can find a helpful list of time zones here

AWS
wolanlu
已回答 2 年前
profile picture
专家
已审核 1 个月前
  • Thanks for the answer, but I get following error.

    can't serialize value (/createpayInfo/date) : Unable to serialize 2022-03-28 12:34:59+0530 as a valid DateTime Object.

    Changing the type from AWSDateTime to String fixed the issue. Seems other time zone value is not accepted when value is inserted in dynamodb.

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则