本质是本地docker,只支持异步调用
- run aws-stepfunctions-local
docker run -p 8083:8083 \
--mount type=bind,readonly,source=/path/MockConfigFile.json,destination=/home/StepFunctionsLocal/MockConfigFile.json \
-e SFN_MOCK_CONFIG="/home/StepFunctionsLocal/MockConfigFile.json" \
--env-file /path/aws-stepfunctions-local-credentials.txt \
amazon/aws-stepfunctions-local
- Create a state machine
aws stepfunctions create-state-machine --endpoint-url http://localhost:8083 \
--name "sf-noDependencies" \
--definition "{\"Comment\":\"A description of my state machine\",\"StartAt\":\"Pass\",\"States\":{\"Pass\":{\"Type\":\"Pass\",\"Next\":\"Success\",\"Result\":{\"output\":\"hello word\"}},\"Success\":{\"Type\":\"Succeed\"}}}" \
--role-arn "arn:aws:iam::012345678901:role/DummyRole">>>return
{"stateMachineArn": "arn:aws:states:us-east-1:123456789012:stateMachine:sf-noDependencies","creationDate": "2024-04-23T09:21:28.168000+08:00"
}
- run sf-noDependencies
aws stepfunctions start-execution --endpoint-url http://localhost:8083 --state-machine-arn arn:aws:states:us-east-1:123456789012:stateMachine:sf-noDependencies>>>return
{"executionArn": "arn:aws:states:us-east-1:123456789012:execution:sf-noDependencies:37c65018-25db-4d92-9aee-6e319b1cf5b7","startDate": "2024-04-22T15:08:15.401000+08:00"
}
- describe-execution
aws stepfunctions describe-execution --endpoint http://localhost:8083 --execution-arn arn:aws:states:us-east-1:123456789012:execution:sf-noDependencies:37c65018-25db-4d92-9aee-6e319b1cf5b7