Mercurial > public > finance-parser
diff statemachine/statemachine.asl.json @ 3:2e5f3664f3e4
documents analyzer almost finished
author | Dennis C. M. <dennis@denniscm.com> |
---|---|
date | Fri, 02 Jun 2023 20:12:29 +0100 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/statemachine/statemachine.asl.json Fri Jun 02 20:12:29 2023 +0100 @@ -0,0 +1,20 @@ +{ + "StartAt": "AnalyzeDocumentWithTextract", + "States": { + "AnalyzeDocumentWithTextract": { + "Type": "Task", + "Resource": "${AnalyzeDocumentFunctionArn}", + "Next": "ProcessDocument" + }, + "ProcessDocument": { + "Type": "Task", + "Resource": "${ProcessDocumentFunctionArn}", + "Next": "UploadDocument" + }, + "UploadDocument": { + "Type": "Task", + "Resource": "${UploadDocumentFunctionArn}", + "End": true + } + } +} \ No newline at end of file