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

posta 2 anni fa467 visualizzazioni
1 Risposta
1
Risposta accettata

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
con risposta 2 anni fa
profile picture
ESPERTO
verificato un mese fa
  • 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.

Accesso non effettuato. Accedi per postare una risposta.

Una buona risposta soddisfa chiaramente la domanda, fornisce un feedback costruttivo e incoraggia la crescita professionale del richiedente.

Linee guida per rispondere alle domande