π₯ serverless-framework
βοΈ AWS Console
{
"StartAt": "Step0",
"States": {
"Step0": {
"Type": "Pass",
"InputPath": "$['a', 'b'].v",
"ResultPath": "$.stateOutput.Step0",
"End": true
}
}
}
Serverless Famework Error:
Serverless Error ----------------------------------------
β State machine "example1" definition is invalid:
Lexical error on line 1. Unrecognized text.
$['a', 'b'].v
------^
AWS Console Error:
{
"error": "States.Runtime",
"cause": "An error occurred while executing the state 'Step0' (entered at the event id #2). Invalid path '$['a', 'b'].v' : Multi properties can only be used as path leafs: $['a', 'b']"
}
βοΈ serverless-framework
βοΈ AWS Console
Changing InputPath: $['a', 'b']
in the Console works and produces:
{
"StartAt": "Step0",
"States": {
"Step0": {
"Type": "Pass",
"InputPath": "$['a', 'b']",
"ResultPath": "$.stateOutput.Step0",
"End": true
}
}
}
π₯ serverless-framework
βοΈ AWS Console
{
"a": {
"v": 1
},
"b": {
"v": 2
},
"c": {
"v": 3
},
"stateOutput": {
"Step0": {
"a": {
"v": 1
},
"b": {
"v": 2
}
}
}
}
The MultiProperty syntax still throws the same error in serverless framework when trying to deploy
Serverless Error ----------------------------------------
β State machine "example1" definition is invalid:
Lexical error on line 1. Unrecognized text.
$['a', 'b']
------^
βοΈ serverless-framework
βοΈ AWS Console
{
"StartAt": "Step0",
"States": {
"Step0": {
"Type": "Pass",
"InputPath": "$[*].v",
"ResultPath": "$.stateOutput.Step0",
"End": true
}
}
}
βοΈ serverless-framework
βοΈ AWS Console
{
"a": {
"v": 1
},
"b": {
"v": 2
},
"c": {
"v": 3
},
"stateOutput": {
"Step0": [
1,
2,
3
]
}
}
βοΈ serverless-framework
βοΈ AWS Console
{
"StartAt": "Step0",
"States": {
"Step0": {
"Type": "Pass",
"Parameters": {
"params.$": "$['a', 'b']"
},
"ResultPath": "$.stateOutput.Step0",
"End": true
}
}
}
βοΈ serverless-framework
βοΈ AWS Console
{
"a": {
"v": 1
},
"b": {
"v": 2
},
"c": {
"v": 3
},
"stateOutput": {
"Step0": {
"params": {
"a": {
"v": 1
},
"b": {
"v": 2
}
}
}
}
}
βοΈ serverless-framework
βοΈ AWS Console
{
"StartAt": "Step0",
"States": {
"Step0": {
"Type": "Pass",
"Parameters": {
"params.$": "$['a', 'b'].v"
},
"ResultPath": "$.stateOutput.Step0",
"End": true
}
}
}
{
"error": "States.Runtime",
"cause": "An error occurred while executing the state 'Step0' (entered at the event id #2). The JSONPath '$['a', 'b'].v' specified for the field 'params.$' could not be found in the input '{\"a\":{\"v\":1},\"b\":{\"v\":2},\"c\":{\"v\":3}}'"
}
βοΈ serverless-framework
βοΈ AWS Console
{
"StartAt": "Step0",
"States": {
"Step0": {
"Type": "Pass",
"Parameters": {
"params.$": "$[*].v"
},
"ResultPath": "$.stateOutput.Step0",
"End": true
}
}
}
{
"a": {
"v": 1
},
"b": {
"v": 2
},
"c": {
"v": 3
},
"stateOutput": {
"Step0": {
"params": [
1,
2,
3
]
}
}
}
{
"StartAt": "Step0",
"States": {
"Step0": {
"Type": "Pass",
"Parameters": {
"params.$": "$[*].v"
},
"Result": {
"result_params.$": "$.params"
},
"ResultPath": "$.stateOutput.Step0",
"End": true
}
}
}
Didn't go as planned.... π ...doesn't seem as if Result
field accepts a JSONPath (Path, or Reference Path) π€
{
"a": {
"v": 1
},
"b": {
"v": 2
},
"c": {
"v": 3
},
"stateOutput": {
"Step0": {
"result_params.$": "$.params"
}
}
}