DALDEI / step-functions-draw.io

You can make a AWS step functions workflow with GUI and export JSON.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

AWS Step Functions Workflow Designer

About

You can make a AWS step functions workflow with GUI on the browser and export JSON.

This is a AWS Step Functions plugin for draw.io.

Introduction movie is below
Intro Movie

Quick Start

  1. Access to https://www.draw.io/.
  2. Select Save Option (ex. Decide Later...)
  3. Select Menu [Extras]-[Plugins]
  4. Click [Add]
  5. Input https://cdn.jsdelivr.net/gh/sakazuki/step-functions-draw.io/aws-step-functions.js
  6. [Apply]
  7. Reload the page

Example

  1. Drag and drop a Start on a diagram
  2. Drag and drop a Task on a diagram
  3. Select Task, and click a Settings(gear) icon, and Input params
  4. Drag a connection from Start to Task
  5. Drag and drop a End on a diagram
  6. Drag a connection from Task to End
  7. Menu [StepFunctions]-[Export JSON]
  8. Copy the output and paste it to AWS Step Functions management console.

Usage

Top-level fields

  • You can set them with [Edit Data...] on a diagram.

AWS config

  • You can select a function from lamdba when you input AWS config variables.

Choice Connection Condition field

  • You can use ==, >, <, >=, <=, !, &&, ||, ().
  • You can write it like ($.x == true) && ($.y == 3) && !($.z == 2).
  • I parse it using JSEP (https://github.com/soney/jsep) in Choice Condition.

Retry

  • Drag a connection from a state and Drop on self.

Weight fields

  • This fields are used to define order (from big to small)

Feature

  • You can put states that are not connected.
  • You can use states that is normal shapes that draw.io provides.

Useful TIPS

  • Put a inputed AWSconfig into [Scratchpad].
  • Put a frequent useful pattern into [Scratchpad].

About

You can make a AWS step functions workflow with GUI and export JSON.

License:GNU General Public License v3.0


Languages

Language:JavaScript 100.0%