Getting accountID from resolvers

0

How can we get the account id from vtl in appsync resolvers?

Jehan
preguntada hace un mes122 visualizaciones
1 Respuesta
0

To get the AWS account ID from a Velocity Template Language (VTL) resolver in AWS AppSync, you can use the $util.awsAccountId() utility function provided by AWS AppSync VTL. This function returns the AWS account ID associated with the current execution context.

Here's an example of how you can use it in your resolver:

#set($accountId = $util.awsAccountId())
{
  "accountId": "$accountId"
}

here, $util.awsAccountId() is called to retrieve the AWS account ID, and the value is assigned to the $accountId variable. Then, the account ID is returned as part of the response object.

You can include this VTL code in the response mapping template of your resolver to dynamically fetch the AWS account ID during each resolver execution.

profile picture
EXPERTO
respondido hace un mes
profile picture
EXPERTO
revisado hace un mes
  • This doesn't work for me. I need it for request template. Is there any other way to do this?

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