Skip to content

Instantly share code, notes, and snippets.

@andrhamm
andrhamm / await-state-machine-execution.js
Last active December 23, 2021 06:35
API Gateway Synchronous Step Function Execution
// handlers/await-state-machine-execution.js
import AWS from 'aws-sdk';
import { snakeCaseObj } from '../lib/common';
const stepfunctions = new AWS.StepFunctions({apiVersion: '2016-11-23'});
const {
STATE_MACHINE_ARN,
} = process.env;