A Step Function state machine construct focused on working well with the Workflow Studio
Project description
Workflow Studio compatible State Machine
This is a Workflow Studio compatible AWS Step Function state machine construct.
The goal of this construct is to make it easy to build and maintain your state machines using the Workflow Studio but still leverage the AWS CDK as the source of truth for the state machine.
Read more about it here.
How to Use This Construct
Start by designing your initial state machine using the Workflow Studio. When done with your first draft, copy and paste the ASL definition to a local file.
Create a new instance of this construct, handing it a fully parsed version of the ASL.
Then add overridden values.
The fields in the overrides
field should match the States
field of the ASL.
const secret = new Secret(stack, 'Secret', {});
new StateMachine(stack, 'Test', {
stateMachineName: 'A nice state machine',
definition: JSON.parse(fs.readFileSync(path.join(__dirname, 'sample.json'), 'utf8').toString()),
overrides: {
'Read database credentials secret': {
Parameters: {
SecretId: secret.secretArn,
},
},
},
});
In this example, the ASL has a state called 'Read database credentials secret' and the SecretId parameter is overridden with a CDK generated value. Future changes can be done by editing, debugging, and testing the state machine directly in the Workflow Studio. Once everything is working properly, copy and paste the ASL back to your local file.
Issues
Please open any issues you have on Github.
Contributing
Please submit PRs from forked repositories if you'd like to contribute.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for mbonig.state-machine-0.0.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4c5b63b49c50314dcb480ad84ca41d3732b4529827efe01ef5c7d39bff094f10 |
|
MD5 | ab44d454f3742bf57f741cbb6bab2215 |
|
BLAKE2b-256 | 6db8a32e34ec88afe904e71e968c60da067ed86ec505925d946798e2a4f61f8b |
Hashes for mbonig.state_machine-0.0.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 37819ecf301ce2a417c9a5acb2ca135ce9acb5b7ce411086014cd39eb6404f5f |
|
MD5 | cfcca48c5e2e2996c74b6e3400e95cc4 |
|
BLAKE2b-256 | e152d53690657438066125763a89cb4a4cf00d016093a32939117b1e4dde568a |