pub struct StepFunctionsClient<'a> { /* private fields */ }Implementations§
Source§impl StepFunctionsClient<'_>
impl StepFunctionsClient<'_>
Sourcepub async fn get_executions(
&self,
) -> Result<StepFunctionsExecutionsResponse, Error>
pub async fn get_executions( &self, ) -> Result<StepFunctionsExecutionsResponse, Error>
List all Step Functions executions with status, input, output, and timestamps.
Sourcepub async fn get_sync_executions(
&self,
) -> Result<StepFunctionsSyncExecutionsResponse, Error>
pub async fn get_sync_executions( &self, ) -> Result<StepFunctionsSyncExecutionsResponse, Error>
List StartSyncExecution invocations with billing details. EXPRESS state
machines only — async (StartExecution) calls show up under
Self::get_executions instead.
Sourcepub async fn enqueue_activity_task(
&self,
req: &SfnEnqueueActivityTaskRequest,
) -> Result<SfnEnqueueActivityTaskResponse, Error>
pub async fn enqueue_activity_task( &self, req: &SfnEnqueueActivityTaskRequest, ) -> Result<SfnEnqueueActivityTaskResponse, Error>
Return the nested call tree rooted at execution_arn. Children are
executions that were started by their parent via
arn:aws:states:::states:startExecution[.sync].
Inject an activity task into the worker pool, skipping a
state-machine execution. Used by tests that want to exercise the
worker-pool API surface (GetActivityTask / SendTaskSuccess)
without spinning up an ASL workflow.
pub async fn get_execution_tree( &self, execution_arn: &str, ) -> Result<StepFunctionsExecutionTreeResponse, Error>
Auto Trait Implementations§
impl<'a> Freeze for StepFunctionsClient<'a>
impl<'a> !RefUnwindSafe for StepFunctionsClient<'a>
impl<'a> Send for StepFunctionsClient<'a>
impl<'a> Sync for StepFunctionsClient<'a>
impl<'a> Unpin for StepFunctionsClient<'a>
impl<'a> UnsafeUnpin for StepFunctionsClient<'a>
impl<'a> !UnwindSafe for StepFunctionsClient<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more