Skip to content

Latest commit

 

History

History
39 lines (29 loc) · 1.46 KB

File metadata and controls

39 lines (29 loc) · 1.46 KB

TASK STATE IN STEP FUNCTIONS

1. INTRODUCTION

2. NEW STEPS

(A) ADD NEW STEPS TO THE PREVIOUS STATE MACHINE (BY CONSOLE)

  • Go to Step Functions console

  • Enter the previous created state machine. In this case, Helloworld

  • Choose Edit

  • Under State machine definition, substitute the previous code with the code on the Project 3

  • Choose Save

  • Choose Start execution

  • Under Enter an execution name - optional, enter a specific execution name. If not desirable, AWS will do it automatically
  • Under Input - opcional, you can set the input data for the state machine (JSON format)
{
  "Comment": "Insert your JSON here",
  "number": 8
}
  • Choose Start execution

(B) VISUAL WORKFLOW

  • In Visual workflow, you can see if the test was successful
  • In Code, you can see the corresponding ASL code
  • Under Execution event history, we can see the history of events

3. BIBLIOGRAPHICAL REFERENCES