Getting accountID from resolvers

0

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

Jehan
demandé il y a un mois122 vues
1 réponse
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
EXPERT
répondu il y a un mois
profile picture
EXPERT
vérifié il y a un mois
  • This doesn't work for me. I need it for request template. Is there any other way to do this?

Vous n'êtes pas connecté. Se connecter pour publier une réponse.

Une bonne réponse répond clairement à la question, contient des commentaires constructifs et encourage le développement professionnel de la personne qui pose la question.

Instructions pour répondre aux questions