我已经设置了AWS SAM CLI,并想模拟一些AWS事件并测试一些AWS Lambda函数。我可以通过 invoke
在本地完成此操作Results.tidy <- Results %>%
gather(D, d_val, NetStateCosts:DeltaCosts) %>%
gather(CS, c_val, CostPerTon)
barRes <- ggplot(Results.tidy, aes(x=V))
barRes +
geom_bar(aes(y=d_val,fill=D),stat="identity",position="dodge")
但是我对通过本地服务器执行功能是否可以实现这一点很感兴趣。正在运行
sam local invoke MyFunction -e event.json
然后导航到例如
sam local start-api
运行该函数,但事件json自然为空。可以通过它吗?