gpt4 book ai didi

amazon-web-services - 如何将常量 json 数据传递和检索到 lambda 函数

转载 作者:行者123 更新时间:2023-12-04 02:58:16 26 4
gpt4 key购买 nike

enter image description here

我定义了 lambda 函数,例如:

def lambda_handler(event, context):

#get constant json argument passed from cloudwatch event rule

...

获取目标/配置输入/常量(Json 文本)中定义的值的方法是什么。

最佳答案

当我在 AWS 文档中阅读时,json 作为 dict 类型传递给 python。然后我简单地调用这个值:

通过json:

{"type": "daily", "retention": 7}

然后在您的处理程序中:
def lambda_handler(event, context):
type = event["type"]
rententionDay = event["retention"]
...

使用这个我能够为所有 ebs 卷制作一个自动化快照。
希望有帮助。

关于amazon-web-services - 如何将常量 json 数据传递和检索到 lambda 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40676617/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com