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

preguntada hace 2 años467 visualizaciones
1 Respuesta
1
Respuesta aceptada

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
respondido hace 2 años
profile picture
EXPERTO
revisado hace un mes
  • 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.

No has iniciado sesión. Iniciar sesión para publicar una respuesta.

Una buena respuesta responde claramente a la pregunta, proporciona comentarios constructivos y fomenta el crecimiento profesional en la persona que hace la pregunta.

Pautas para responder preguntas