Skip to content

noahgift/aws-step-functions

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

aws-step-functions

Brief Tutorial on AWS Step Functions

Watch Walkthrough on O'Reilly

Overview

The overall idea is to chain AWS Lambda functions together where the input of one feeds into another function.

visual-workflow

score

step-function-out

You can invoke the step functions or individual lambdas via the AWS CLI

List AWS Step Functions

aws stepfunctions list-state-machines

cloud-shell

Execute Step Functions

aws stepfunctions start-execution --state-machine-arn "arn:aws:states:us-east-1:561744971673:stateMachine:Demo-Customer-Service-System" --input "{\"phrase\" : \"Today is a beautiful day\"}"

This invokes the step function remotely which is a powerful way to do serverless Data Engineering.

step-functions

List AWS Lambdas

aws lambda list-functions

Screen Shot 2021-09-13 at 1 05 16 PM

Resources