AWS – 打印 Lambda 的载荷结果

huangapple go评论62阅读模式
英文:

AWS - print out lambda's payload result

问题

My Lambda调用使用--payload参数来运行另一个CLI命令。如何在Lambda的日志中打印CLI的payload结果?

目前我得到的是简单的{"status":"OK"}

set -x 
ls
aws sts get-caller-identity 
aws lambda invoke \
    --function-name my_func \
    --cli-binary-format raw-in-base64-out \
    --payload '{"command":"/opt/awscli/aws sts decode-authorization-message --encoded-message '$1' --output text"}' \
    --output text \
    response.json
英文:

My Lambda call uses --payload param to to run another cli command. How to print cli's payload result in Lambda's log?

Currently I'm getting simple {"status":"OK"}

set -x 
 ls
 aws sts get-caller-identity 
 aws lambda invoke \
    --function-name my_func \
    --cli-binary-format raw-in-base64-out \
    --payload '{"command":"/opt/awscli/aws sts decode-authorization-message --encoded-message '$1' --output text"}' \
    --output text \
    response.json

答案1

得分: 1

在上述脚本中添加最后一行就解决了问题:

cat response.json
英文:

Adding final line in above script did the trick:

cat response.json

huangapple
  • 本文由 发表于 2023年6月15日 21:39:31
  • 转载请务必保留本文链接:https://go.coder-hub.com/76483084.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定