AWS Step Function:状态 A 将 lambda 输出传递给状态 B
AWS Step Function: state A pass lambda output to state B
我的 AWS lambda 函数 check-version-lambda
returns
{"latest": "yes"}
或 {"latest": "no"}
.
我有下面的 AWS 步骤函数,将上面的结果传递给下一个状态。
下一个状态process_version
是选择状态,如何获取Choices
里面的输入? <???>
要填写什么?
{
"StartAt": "check_version",
"States": {
"check_version": {
"Type": "Task",
"Resource": "arn:aws:lambda:us-east-1:000:function:check-version-lambda",
"OutputPath": "$.latest",
"Next": "process_version"
},
"process_version": {
"Type": "Choice",
"Choices": [
{
"Variable": "<???>",
"StringEquals": "yes",
"Next": "next_state"
},
{
"Variable": "<???>",
"StringEquals": "no",
"Next": "next_state"
}
],
"Default": "next_state"
}
}
}
在你的“check_version”状态下,你可以使用
"ResultPath": "$.result",
"OutputPath": "$.result",
显式配置 step 函数以将 lambda 的结果(例如 {"latest": "yes"}
)放入输入对象的 result
属性 中。 OutputPath
告诉步进函数仅 select 结果作为状态输出并将其移交给下一个状态。
在“process_version”状态下,您应该可以使用:
"Variable": "$.result.latest",
"StringEquals": "yes",
"Next": ...
来源:https://docs.aws.amazon.com/step-functions/latest/dg/input-output-example.html
我的 AWS lambda 函数 check-version-lambda
returns
{"latest": "yes"}
或 {"latest": "no"}
.
我有下面的 AWS 步骤函数,将上面的结果传递给下一个状态。
下一个状态process_version
是选择状态,如何获取Choices
里面的输入? <???>
要填写什么?
{
"StartAt": "check_version",
"States": {
"check_version": {
"Type": "Task",
"Resource": "arn:aws:lambda:us-east-1:000:function:check-version-lambda",
"OutputPath": "$.latest",
"Next": "process_version"
},
"process_version": {
"Type": "Choice",
"Choices": [
{
"Variable": "<???>",
"StringEquals": "yes",
"Next": "next_state"
},
{
"Variable": "<???>",
"StringEquals": "no",
"Next": "next_state"
}
],
"Default": "next_state"
}
}
}
在你的“check_version”状态下,你可以使用
"ResultPath": "$.result",
"OutputPath": "$.result",
显式配置 step 函数以将 lambda 的结果(例如 {"latest": "yes"}
)放入输入对象的 result
属性 中。 OutputPath
告诉步进函数仅 select 结果作为状态输出并将其移交给下一个状态。
在“process_version”状态下,您应该可以使用:
"Variable": "$.result.latest",
"StringEquals": "yes",
"Next": ...
来源:https://docs.aws.amazon.com/step-functions/latest/dg/input-output-example.html