UNPKG

maestro

Version:

Maestro is a framework for quickly bootstrapping serverless orchestration workflows with AWS Step Functions

8 lines (5 loc) 209 B
const { stepFunctions } = require("../services"); const deleteStateMachine = (arn) => { return stepFunctions.deleteStateMachine({ stateMachineArn: arn }).promise(); }; module.exports = deleteStateMachine;