Retrieves the current execution state required for the replay process during durable function execution
Source:R/lambda_operations.R
lambda_get_durable_execution_state.RdRetrieves the current execution state required for the replay process during durable function execution. This API is used by the Lambda durable functions SDK to get state information needed for replay. You typically don't need to call this API directly as the SDK handles state management automatically.
See https://www.paws-r-sdk.com/docs/lambda_get_durable_execution_state/ for full documentation.
Usage
lambda_get_durable_execution_state(
DurableExecutionArn,
CheckpointToken,
Marker = NULL,
MaxItems = NULL
)Arguments
- DurableExecutionArn
[required] The Amazon Resource Name (ARN) of the durable execution.
- CheckpointToken
[required] A checkpoint token that identifies the current state of the execution. This token is provided by the Lambda runtime and ensures that state retrieval is consistent with the current execution context.
- Marker
If
NextMarkerwas returned from a previous request, use this value to retrieve the next page of operations. Each pagination token expires after 24 hours.- MaxItems
The maximum number of operations 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.