Getting accountID from resolvers

0

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

Jehan
已提问 1 个月前122 查看次数
1 回答
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
专家
已回答 1 个月前
profile picture
专家
已审核 1 个月前
  • This doesn't work for me. I need it for request template. Is there any other way to do this?

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

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

回答问题的准则