作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
def lambda_handler(event, context):
#get constant json argument passed from cloudwatch event rule
...
最佳答案
当我在 AWS 文档中阅读时,json 作为 dict 类型传递给 python。然后我简单地调用这个值:
通过json:
{"type": "daily", "retention": 7}
def lambda_handler(event, context):
type = event["type"]
rententionDay = event["retention"]
...
关于amazon-web-services - 如何将常量 json 数据传递和检索到 lambda 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40676617/
我是一名优秀的程序员,十分优秀!