Amazon web services – How to merge StepFunction ResultSelector with ResultPath?
In AWS, I have a Step Function Workflow: "GetAccountAlias": { "Type": "Task", "Resource": "arn:aws:states:::aws-sdk:iam:listAccountAliases", "Parameters": { "MaxItems": 1 }, "ResultSelector": { "name.$": "States.ArrayGetItem($.AccountAliases, 0)" }, "ResultPath": "$.name", "Next": "Update" }, It gets an input like this: { "my_object_key": "123" }…