fakecloud-stepfunctions 0.15.2

Step Functions implementation for FakeCloud
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod choice;
pub mod error_handling;
pub mod interpreter;
pub mod intrinsics;
pub mod io_processing;
pub(crate) mod service;
pub(crate) mod state;

pub use service::{start_execution_from_delivery, SharedServiceRegistry, StepFunctionsService};
pub use state::{
    Activity, AliasRoute, Execution, SharedStepFunctionsState, StateMachine, StateMachineAlias,
    StateMachineStatus, StateMachineType, StateMachineVersion, StepFunctionsSnapshot,
    StepFunctionsState, TaskTokenState, STEPFUNCTIONS_SNAPSHOT_SCHEMA_VERSION,
};