pub trait StepFunctionsDelivery: Send + Sync {
// Required method
fn start_execution(&self, state_machine_arn: &str, input: &str);
}Expand description
Trait for starting Step Functions executions from cross-service integrations.
Required Methods§
Sourcefn start_execution(&self, state_machine_arn: &str, input: &str)
fn start_execution(&self, state_machine_arn: &str, input: &str)
Start a state machine execution with the given input. The state machine is identified by ARN.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".