Retrieves the execution history for a durable execution, showing all the steps, callbacks, and events that occurred during the execution
Source:R/lambda_operations.R
lambda_get_durable_execution_history.RdRetrieves the execution history for a durable execution, showing all the steps, callbacks, and events that occurred during the execution. This provides a detailed audit trail of the execution's progress over time.
See https://www.paws-r-sdk.com/docs/lambda_get_durable_execution_history/ for full documentation.
Usage
lambda_get_durable_execution_history(
DurableExecutionArn,
IncludeExecutionData = NULL,
MaxItems = NULL,
Marker = NULL,
ReverseOrder = NULL
)Arguments
- DurableExecutionArn
[required] The Amazon Resource Name (ARN) of the durable execution.
- IncludeExecutionData
Specifies whether to include execution data such as step results and callback payloads in the history events. Set to
trueto include data, orfalseto exclude it for a more compact response. The default istrue.- MaxItems
The maximum number of history events to return per call. You can use
Markerto retrieve additional pages of results. The default is 100 and the maximum allowed is 1000. A value of 0 uses the default.- Marker
If
NextMarkerwas returned from a previous request, use this value to retrieve the next page of results. Each pagination token expires after 24 hours.- ReverseOrder
When set to
true, returns the history events in reverse chronological order (newest first). By default, events are returned in chronological order (oldest first).