AWS步驟中有沒有一種方法將輸出從一種狀態映射到下一個狀態的輸入,超出了InputPath
,OutputPath
,, ResultPath
?AWS之間精煉的jsonPath映射步驟
例如從第一狀態輸出例如:
{
"status": "1",
"body": {
"access_token":"example_token"
}
}
下一狀態期望形式的輸入:
{
"method": "foo",
"payload": {
"access_token":<my_access_token>,
"other_key":"other_value"
},
"other_params":["a","b","c"]
}
目前尚不清楚如何的1個狀態的輸出任意映射到的另一輸入端。唯一的解決方案似乎是重寫Lambdas。
基本上我需要這樣的東西:
"Remap": {
"Type": "Pass",
"Result": {
"method":"foo",
"payload":{
"access_token":"$.body.access_token",
"other_key":"other_value"
},
"other_params":["a","b","c"]
},
"Next": "NextStage"
},