view 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 source

{
  "StartAt": "AnalyzeDocumentWithTextract",
  "States": {
    "AnalyzeDocumentWithTextract": {
      "Type": "Task",
      "Resource": "${AnalyzeDocumentFunctionArn}",
      "Next": "ProcessDocument"
    },
    "ProcessDocument": {
      "Type": "Task",
      "Resource": "${ProcessDocumentFunctionArn}",
      "Next": "UploadDocument"
    },
    "UploadDocument": {
      "Type": "Task",
      "Resource": "${UploadDocumentFunctionArn}",
      "End": true
    }
  }
}