AWS Step Function 能否依赖并发 Lambda 完成?

Can AWS Step Function depend on concurrent Lambdas completing?

我正在尝试找到一种方法让 Parent Lambda 函数调用多个并发参数化 Child Lambda 函数,并让另一个 Final Lambda 函数在所有 Child Lambda 函数完成后执行。

目标是Child函数将数据写入S3,Final函数将数据从S3导入到一个数据库。

这可以使用 Step Functions 吗?如果是这样,如何?有没有更好的方法来解决这个问题?

是的,可以使用 Step 函数。您需要在状态机中使用 Map state

Here is an AWS Blog post about the Map state that gives examples of it's usage when it was first announced.